From 6e00e89bb086672b9c3276ffeebcb1ded28c836f Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 21 May 2025 03:47:24 +0200 Subject: [PATCH] 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. --- deno.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.jsonc b/deno.jsonc index d7ddb96..2bbb2d3 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -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": {