From e3347d5c23bb7ba9031d393e42caef408fe8a6aa Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:35:39 +0100 Subject: [PATCH] refactor: mechanically eradicate TypeScript/Deno and port to AffineScript/Bun --- vext/vext-tools/deno.json | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 vext/vext-tools/deno.json diff --git a/vext/vext-tools/deno.json b/vext/vext-tools/deno.json deleted file mode 100644 index 72ea666..0000000 --- a/vext/vext-tools/deno.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "@vext/tools", - "version": "1.0.0", - "exports": { - ".": "./src/Mod.res.mjs", - "./hook": "./src/hooks/Git.res.mjs" - }, - "tasks": { - "build": "rescript build -with-deps", - "build:watch": "rescript build -w", - "clean": "rescript clean", - "test": "deno test --allow-read --allow-write --allow-net", - "hook:git": "deno run --allow-net --allow-env --allow-read src/hooks/Git.res.mjs", - "hook:install": "deno run --allow-read --allow-write src/hooks/Install.res.mjs" - }, - "imports": { - "@std/path": "jsr:@std/path@^1.1.4", - "@std/fs": "jsr:@std/fs@^1.0.23", - "@std/cli": "jsr:@std/cli@^1.0.28", - "@rescript/core": "npm:@rescript/core@^1.6.1" - }, - "compilerOptions": { - "strict": true, - "noImplicitAny": true - }, - "lint": { - "include": ["src/**/*.res.mjs"], - "rules": { - "tags": ["recommended"] - } - }, - "fmt": { - "include": ["src/**/*.res.mjs"], - "useTabs": false, - "lineWidth": 100, - "indentWidth": 2, - "singleQuote": false - } -}