|
7 | 7 | "build": "cargo tauri build", |
8 | 8 | "bundle": "DENO_NO_PACKAGE_JSON=1 deno run -A scripts/bundle.ts", |
9 | 9 | "bundle:watch": "DENO_NO_PACKAGE_JSON=1 deno run -A scripts/bundle.ts --watch", |
10 | | - "css:build": "$HOME/.asdf/installs/nodejs/25.6.1/bin/node ./node_modules/.bin/tailwindcss -i ./src/styles/input.css -o ./public/styles.css --minify", |
11 | | - "css:watch": "$HOME/.asdf/installs/nodejs/25.6.1/bin/node ./node_modules/.bin/tailwindcss -i ./src/styles/input.css -o ./public/styles.css --watch", |
| 10 | + "css:build": "deno run -A npm:tailwindcss -i ./src/styles/input.css -o ./public/styles.css --minify", |
| 11 | + "css:watch": "deno run -A npm:tailwindcss -i ./src/styles/input.css -o ./public/styles.css --watch", |
12 | 12 | "serve:dev": "deno run --allow-net=127.0.0.1:8000 --allow-read=. scripts/dev-server.ts", |
13 | 13 | "test": "deno test --no-check --allow-read --allow-env tests/", |
14 | 14 | "test:watch": "deno test --no-check --watch --allow-read --allow-env tests/", |
15 | 15 | "test:coverage": "deno test --no-check --coverage=coverage/ tests/ && deno coverage coverage/", |
16 | 16 | "lint": "deno lint scripts/", |
17 | 17 | "fmt": "deno fmt scripts/", |
18 | 18 | "mock:echidna": "deno run --allow-net=127.0.0.1:9000 scripts/mock-echidna.ts", |
19 | | - "res:build": "$HOME/.asdf/installs/nodejs/25.6.1/bin/node ./node_modules/.bin/rescript build", |
20 | | - "res:clean": "$HOME/.asdf/installs/nodejs/25.6.1/bin/node ./node_modules/.bin/rescript clean", |
21 | | - "res:watch": "$HOME/.asdf/installs/nodejs/25.6.1/bin/node ./node_modules/.bin/rescript build -w" |
| 19 | + "res:build": "deno run -A npm:rescript build", |
| 20 | + "res:clean": "deno run -A npm:rescript clean", |
| 21 | + "res:watch": "deno run -A npm:rescript build -w" |
22 | 22 | }, |
23 | 23 | "imports": { |
24 | 24 | "@std/": "jsr:@std/", |
25 | 25 | "@tauri-apps/api": "npm:@tauri-apps/api@^2.10.0", |
26 | 26 | "@tauri-apps/plugin-dialog": "npm:@tauri-apps/plugin-dialog", |
27 | 27 | "@tauri-apps/plugin-fs": "npm:@tauri-apps/plugin-fs", |
28 | | - "rescript/": "npm:/rescript@11.1.4/", |
29 | | - "@rescript/core/": "npm:/@rescript/core@1.6.1/", |
30 | | - "@rescript/runtime/": "npm:/@rescript/runtime@12.2.0/" |
| 28 | + "rescript": "^12.0.0", |
| 29 | + "@rescript/core": "npm:@rescript/core@1.6.1", |
| 30 | + "@rescript/runtime": "npm:@rescript/runtime@12.2.0/" |
31 | 31 | }, |
32 | 32 | "compilerOptions": { |
33 | 33 | "strict": true, |
|
0 commit comments