From f3f2c61da0785dce4c6b8c7d8ef0ae9abf098172 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 30 May 2025 12:23:51 +0200 Subject: [PATCH] fix(build): update included files to use .jsonc format --- deno.jsonc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 5132c0c..a752d52 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -5,8 +5,8 @@ "fmt": "deno fmt --check", "lint": "deno lint", "ci": "deno task fmt && deno task lint && deno task test", // For local CI checks - "build:amd64": "deno compile --target x86_64-unknown-linux-gnu --include VERSION --include src/i18n/de.json --include src/i18n/en.json --allow-env --allow-write --allow-read --output dist/systemd-timer-linux-amd64 src/mod.ts", - "build:arm64": "deno compile --target aarch64-unknown-linux-gnu --include VERSION --include src/i18n/de.json --include src/i18n/en.json --allow-env --allow-write --allow-read --output dist/systemd-timer-linux-arm64 src/mod.ts" + "build:amd64": "deno compile --target x86_64-unknown-linux-gnu --include VERSION --include src/i18n/de.jsonc --include src/i18n/en.jsonc --allow-env --allow-write --allow-read --output dist/systemd-timer-linux-amd64 src/mod.ts", + "build:arm64": "deno compile --target aarch64-unknown-linux-gnu --include VERSION --include src/i18n/de.jsonc --include src/i18n/en.jsonc --allow-env --allow-write --allow-read --output dist/systemd-timer-linux-arm64 src/mod.ts" }, "compilerOptions": {}, "fmt": {