Skip to content

Commit c0062f0

Browse files
committed
Auto-commit: Sync changes [2026-03-05]
1 parent dd69f12 commit c0062f0

5 files changed

Lines changed: 15 additions & 1251 deletions

File tree

Justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,8 @@ lint:
7979

8080
fmt:
8181
deno task fmt
82+
83+
# [AUTO-GENERATED] Multi-arch / RISC-V target
84+
build-riscv:
85+
@echo "Building for RISC-V..."
86+
cross build --target riscv64gc-unknown-linux-gnu

deno.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
"build": "cargo tauri build",
88
"bundle": "DENO_NO_PACKAGE_JSON=1 deno run -A scripts/bundle.ts",
99
"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",
1212
"serve:dev": "deno run --allow-net=127.0.0.1:8000 --allow-read=. scripts/dev-server.ts",
1313
"test": "deno test --no-check --allow-read --allow-env tests/",
1414
"test:watch": "deno test --no-check --watch --allow-read --allow-env tests/",
1515
"test:coverage": "deno test --no-check --coverage=coverage/ tests/ && deno coverage coverage/",
1616
"lint": "deno lint scripts/",
1717
"fmt": "deno fmt scripts/",
1818
"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"
2222
},
2323
"imports": {
2424
"@std/": "jsr:@std/",
2525
"@tauri-apps/api": "npm:@tauri-apps/api@^2.10.0",
2626
"@tauri-apps/plugin-dialog": "npm:@tauri-apps/plugin-dialog",
2727
"@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/"
3131
},
3232
"compilerOptions": {
3333
"strict": true,

0 commit comments

Comments
 (0)