Skip to content

Commit 8581d7a

Browse files
committed
minor improvements
1 parent b27e7be commit 8581d7a

File tree

13 files changed

+437
-428
lines changed

13 files changed

+437
-428
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717
- name: Set up Deno
18-
uses: denoland/setup-deno@v1
19-
with:
20-
deno-version: 2.0.0-rc.10
18+
uses: denoland/setup-deno@v2
2119
- name: Cache dependencies
2220
working-directory: static
2321
run: deno task cache

deno.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"imports": {
3-
"@deno/cache-dir": "jsr:@deno/cache-dir@0.12.0",
4-
"@deno/graph": "jsr:@deno/graph@^0.83.0",
3+
"@deno/cache-dir": "jsr:@deno/cache-dir@0.13.2",
4+
"@deno/graph": "jsr:@deno/graph@^0.84.0",
55
"@deno/import-map": "https://deno.land/x/[email protected]/mod.ts",
66
"@std/datetime": "jsr:@std/datetime@^0.225.0",
77
"@std/encoding": "jsr:@std/encoding@^1.0.0",
@@ -17,9 +17,9 @@
1717
"zod": "https://deno.land/x/[email protected]/mod.ts"
1818
},
1919
"scopes": {
20-
"https://jsr.io/@deno/cache-dir/0.12.0/": {
21-
"jsr:/@deno/graph@^0.73.1/types": "jsr:@deno/graph@^0.83.0/types",
22-
"jsr:@deno/graph@^0.73.1": "jsr:@deno/graph@^0.83.0"
20+
"https://jsr.io/@deno/cache-dir/0.13.2/": {
21+
"jsr:/@deno/graph@^0.73.1/types": "jsr:@deno/graph@^0.84.0/types",
22+
"jsr:@deno/graph@^0.73.1": "jsr:@deno/graph@^0.84.0"
2323
}
2424
},
2525
"exclude": [

deno.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/codemirror/escape_string.ts

Lines changed: 0 additions & 71 deletions
This file was deleted.

static/deno.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"imports": {
3-
"@codemirror/commands": "npm:@codemirror/commands@6.6.2",
3+
"@codemirror/commands": "npm:@codemirror/commands@6.7.1",
44
"@codemirror/language": "npm:@codemirror/[email protected]",
55
"@codemirror/state": "npm:@codemirror/[email protected]",
6-
"@codemirror/view": "npm:@codemirror/[email protected]",
7-
"@primer/octicons-react": "npm:@primer/[email protected]",
6+
"@codemirror/view": "npm:@codemirror/[email protected]",
7+
"@primer/octicons-react": "npm:@primer/[email protected]",
8+
"@std/assert": "jsr:@std/assert@^1.0.0",
89
"clsx": "npm:[email protected]",
910
"floating-point-hex-parser": "./deps/floating_point_hex_parser.ts",
1011
"react": "./deps/react.ts",
1112
"react/jsx-runtime": "./deps/react/jsx_runtime.ts",
1213
"react-dom/client": "./deps/react_dom/client.ts",
13-
"react-router-dom": "npm:react-router-dom@6.26.2",
14+
"react-router-dom": "npm:react-router-dom@6.27.0",
1415
"use-latest": "./deps/use_latest.ts"
1516
},
1617
"nodeModulesDir": "auto",
@@ -22,7 +23,7 @@
2223
}
2324
},
2425
"tasks": {
25-
"cache": "rm -rf node_modules && deno cache main.tsx sw.ts",
26-
"lint": "deno fmt --check && deno lint && deno check --all main.tsx && deno check --all sw.ts"
26+
"cache": "rm -rf node_modules && deno cache --allow-import=jsr.io:443 main.tsx sw.ts",
27+
"lint": "deno fmt --check && deno lint && deno check --all --allow-import=jsr.io:443 main.tsx && deno check --all sw.ts"
2728
}
2829
}

static/deno.lock

Lines changed: 38 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// @ts-types="./floating_point_hex_parser.d.ts"
2-
export { default as parseHexFloat } from "npm:@webassemblyjs/floating-point-hex-parser@1.12.1";
2+
export { default as parseHexFloat } from "npm:@webassemblyjs/floating-point-hex-parser@1.13.1";

0 commit comments

Comments
 (0)