diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-01 12:09:00 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-01 12:09:00 -0700 |
commit | 684d3768920786440278fd3745c7d6a69cb34a8b (patch) | |
tree | 96f181743006180f51c8529108b6ed52f9c3d001 /worker | |
parent | 7d2c0a4aedad3c5e8a81bd19f4417aa4f9fb8360 (diff) | |
download | ci-684d3768920786440278fd3745c7d6a69cb34a8b.tar.gz ci-684d3768920786440278fd3745c7d6a69cb34a8b.zip |
Bundle bash scripts
Diffstat (limited to 'worker')
-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", |