diff options
Diffstat (limited to 'worker/package.json')
-rw-r--r-- | worker/package.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/worker/package.json b/worker/package.json index c49dfaf..a3cfcd6 100644 --- a/worker/package.json +++ b/worker/package.json @@ -11,7 +11,7 @@ } }, "scripts": { - "build": "tsc", + "build": "tsc && copyfiles --exclude *.ts scripts/* dist/ && chmod +x dist/scripts/*", "dev": "tsc --watch", "clean": "rm -rf dist", "type-check": "tsc --noEmit" @@ -20,6 +20,9 @@ "@emprespresso/pengueno": "*", "@emprespresso/ci_model": "*" }, + "devDependencies": { + "copyfiles": "2.4.1" + }, "files": [ "dist/**/*", "package.json", |