From 92ab68c587a1e3d3394a84212ec059a84263f48c Mon Sep 17 00:00:00 2001 From: Andrey <50486086+DarkCat09@users.noreply.github.com> Date: Wed, 14 Feb 2024 09:42:48 +0000 Subject: [PATCH] Fix build scripts (#77) * Copy all templates, fix #76 * copy any folders in templates --------- Co-authored-by: Artemy --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 19e2ce8..fbd8187 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build": "npm run clean-css && copyfiles ./templates/*.ejs .env ./dist/ && tsc", + "build": "npm run clean-css && copyfiles ./templates/*.ejs ./templates/**/*.ejs .env ./dist/ && tsc", "start": "cd ./dist && node ./src/app.js", "start:docker": "node ./src/app.js", "clean-css": "cleancss --batch static/*.css -o dist/static --batch-suffix \"\"",