Skip to content

Commit

Permalink
feat: add router
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed May 28, 2024
1 parent 21f8717 commit f89ceb7
Show file tree
Hide file tree
Showing 6 changed files with 495 additions and 138 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.log
9 changes: 7 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"@david/dax": "jsr:@david/dax@^0.41.0",
"@std/assert": "jsr:@std/assert@^0.225.3",
"@std/fmt": "jsr:@std/fmt@^0.225.1",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/net": "jsr:@std/net@^0.224.1",
"@std/path": "jsr:@std/path@^0.225.1",
"@std/regexp": "jsr:@std/regexp@^0.224.1",
"@std/semver": "jsr:@std/semver@^0.224.0"
},
Expand All @@ -31,13 +34,15 @@
"lint": "deno lint --fix",
"lint:fail": "deno lint",
"test": "deno test -A",
"test:watch": "deno test -A --watch",
"type": "deno check **/*.ts",
"check": "deno task format:fail && deno task lint:fail && deno task type && deno task test",
"release": "deno run -A ./scripts/release.ts"
},
"fmt": {
"lineWidth": 120,
"proseWrap": "preserve",
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve"
"singleQuote": true
}
}
23 changes: 23 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f89ceb7

Please sign in to comment.