Skip to content

Commit

Permalink
fix: move npm dep to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Mar 5, 2024
1 parent 25edc96 commit 8a615f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 1 addition & 4 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oak/acorn",
"version": "0.5.1-alpha.3",
"version": "0.5.1-alpha.4",
"exports": {
".": "./mod.ts",
"./context": "./context.ts",
Expand All @@ -10,9 +10,6 @@
"./router": "./router.ts",
"./types": "./types.ts"
},
"imports": {
"urlpattern-polyfill": "npm:[email protected]"
},
"tasks": {
"bench": "deno bench",
"example": "deno run --allow-net --allow-hrtime _examples/server.ts",
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"urlpattern-polyfill": "npm:[email protected]"
}
}

0 comments on commit 8a615f1

Please sign in to comment.