Skip to content

Commit b27e7be

Browse files
committed
update for POSIX.1-2024
1 parent f5e2c63 commit b27e7be

File tree

13 files changed

+516
-613
lines changed

13 files changed

+516
-613
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Deno
1818
uses: denoland/setup-deno@v1
1919
with:
20-
deno-version: 1
20+
deno-version: 2.0.0-rc.10
2121
- name: Cache dependencies
2222
working-directory: static
2323
run: deno task cache

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Explains the magic behind [`fscanf`][fscanf].
44

5-
[fscanf]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/fscanf.html
5+
[fscanf]: https://pubs.opengroup.org/onlinepubs/9799919799/functions/fscanf.html

deno.json

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,34 @@
11
{
22
"imports": {
3-
"@deno/cache-dir": "jsr:@deno/cache-dir@^0.10.2",
4-
"@deno/graph": "jsr:@deno/graph@^0.80.1",
5-
"@deno/import-map": "https://deno.land/x/[email protected].0/mod.ts",
6-
"@std/datetime": "jsr:@std/datetime@^0.224.3",
3+
"@deno/cache-dir": "jsr:@deno/cache-dir@0.12.0",
4+
"@deno/graph": "jsr:@deno/graph@^0.83.0",
5+
"@deno/import-map": "https://deno.land/x/[email protected].1/mod.ts",
6+
"@std/datetime": "jsr:@std/datetime@^0.225.0",
77
"@std/encoding": "jsr:@std/encoding@^1.0.0",
8-
"@std/fs": "jsr:@std/[email protected]-rc.6",
9-
"@std/http": "jsr:@std/[email protected]-rc.5",
8+
"@std/fs": "jsr:@std/fs@^1.0.0",
9+
"@std/http": "jsr:@std/http@^1.0.0",
1010
"@std/media-types": "jsr:@std/media-types@^1.0.0",
1111
"@std/path": "jsr:@std/path@^1.0.0",
12-
"esbuild": "https://deno.land/x/esbuild@v0.23.0/mod.js",
13-
"hast-util-to-html": "npm:[email protected].1",
12+
"esbuild": "https://deno.land/x/esbuild@v0.24.0/mod.js",
13+
"hast-util-to-html": "npm:[email protected].3",
1414
"hastscript": "npm:[email protected]",
15-
"type-fest": "npm:type-fest@4.23.0",
16-
"type-fest/": "npm:/type-fest@4.23.0/source/",
15+
"type-fest": "npm:type-fest@^4.15.0",
16+
"type-fest/": "npm:/type-fest@^4.15.0/source/",
1717
"zod": "https://deno.land/x/[email protected]/mod.ts"
1818
},
1919
"scopes": {
20-
"https://jsr.io/@deno/cache-dir/0.10.2/": {
21-
"jsr:/@deno/graph@^0.73.1/types": "jsr:@deno/graph@^0.80.1/types",
22-
"jsr:@deno/graph@^0.73.1": "jsr:@deno/graph@^0.80.1"
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"
2323
}
2424
},
25-
"compilerOptions": {
26-
"useUnknownInCatchVariables": true
27-
},
2825
"exclude": [
26+
"404.html",
27+
"index.html",
28+
"generated_import_map.json",
2929
"dist",
3030
"static"
3131
],
32-
"fmt": {
33-
"exclude": [
34-
"generated_import_map.json"
35-
]
36-
},
3732
"lint": {
3833
"rules": {
3934
"include": [
@@ -42,7 +37,7 @@
4237
}
4338
},
4439
"tasks": {
45-
"cache": "deno cache dump_kv.ts main.ts scripts/build.tsx",
46-
"lint": "deno fmt --check && deno lint && deno check --all dump_kv.ts && deno check --all main.ts && deno check --all scripts/build.tsx"
40+
"cache": "deno cache --allow-import=deno.land:443,jsr.io:443 dump_kv.ts main.ts scripts/build.tsx",
41+
"lint": "deno fmt --check && deno lint && deno check --all dump_kv.ts && deno check --all --allow-import=deno.land:443,jsr.io:443 main.ts && deno check --all --allow-import=deno.land:443,jsr.io:443 scripts/build.tsx"
4742
}
4843
}

0 commit comments

Comments
 (0)