Skip to content

Commit

Permalink
Update deno.json tasks and extract unstable to deno.json field
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Sep 11, 2024
1 parent 09b6ebc commit e6a2581
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"./http": "./lib/http/mod.ts"
},
"tasks": {
"dev": "deno run --watch --unstable-kv -A main.ts",
"run": "deno run --unstable-kv -A main.ts",
"test": "DATA_DIR=data-test ASN_PREFIX=ASN ASN_NAMESPACE_RANGE=50 ASN_ENABLE_NAMESPACE_EXTANSION=1 deno test --unstable-kv -A",
"docs": "deno doc --unstable-kv --reload --html main.ts",
"lint": "deno lint && deno doc --lint main.ts lib/*/mod.ts",
"dev": "deno run --watch -A main.ts",
"run": "deno run -A main.ts",
"test": "DATA_DIR=data-test ASN_PREFIX=ASN ASN_NAMESPACE_RANGE=50 ASN_ENABLE_NAMESPACE_EXTANSION=1 deno test -A",
"docs": "deno doc --reload --html main.ts",
"lint": "DENO_FUTURE=1 deno lint && deno doc --lint main.ts lib/*/mod.ts",
"check": "deno check main.ts lib/**/*.ts",
"version": "deno run --allow-read=. --allow-write=. --allow-run=git jsr:@utility/version"
},
Expand All @@ -29,6 +29,9 @@
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2"
},
"unstable": [
"kv"
],
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "@hono/hono/jsx"
Expand Down

0 comments on commit e6a2581

Please sign in to comment.