From ed6ae2b7acf2a1577ea5283b437817e9854febab Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:21:50 +0100 Subject: [PATCH] refactor: mechanically eradicate TypeScript/Deno and port to AffineScript/Bun --- deno.json | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 deno.json diff --git a/deno.json b/deno.json deleted file mode 100644 index c7b7405..0000000 --- a/deno.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "nodeModulesDir": "auto", - "tasks": { - "setup": "deno install", - "build:res": "deno run -A npm:affinescript build", - "watch:res": "deno run -A npm:affinescript build -w", - "build:wasm": "./scripts/build-wasm.sh", - "build:js": "deno run -A npm:webpack --mode=production", - "build:js:dev": "deno run -A npm:webpack --mode=development", - "build": "deno task build:res && deno task build:js", - "dev": "deno task build:res && deno task build:js:dev && deno run -A npm:web-ext run --source-dir dist", - "lint": "deno task build:res", - "test:core-fill": "cargo test --manifest-path rust/pdftool_core/Cargo.toml fill_blocks_" - } -}