From 7373ce5834d328ea420fd4e2a980a27e1761f5f0 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:20 +0100 Subject: [PATCH] refactor: mechanically eradicate TypeScript/Deno and port to AffineScript/Bun --- vext-tools/deno.json | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 vext-tools/deno.json diff --git a/vext-tools/deno.json b/vext-tools/deno.json deleted file mode 100644 index 1ef8fd9..0000000 --- a/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", - "@std/fs": "jsr:@std/fs@^1", - "@std/cli": "jsr:@std/cli@^1", - "@rescript/core": "npm:@rescript/core@^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 - } -}