chore(tasks): include version file in build process

- Adds the `--include=VERSION` flag to ensure the version file is part
  of the build output for consistency.
This commit is contained in:
2025-05-21 03:47:24 +02:00
parent 403e047c0c
commit 6e00e89bb0

View File

@@ -2,7 +2,7 @@
"tasks": {
"start": "deno run -A src/mod.ts",
"test": "deno test -A --coverage **/__tests__/*.test.ts",
"build": "deno compile --allow-env --allow-write --output dist/systemd-timer src/mod.ts"
"build": "deno compile --include=VERSION --allow-env --allow-write --output dist/systemd-timer src/mod.ts"
},
"compilerOptions": {},
"fmt": {