Skip to content

Commit

Permalink
use external importMap
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Sep 16, 2023
1 parent ab8427c commit d2db9ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 1 addition & 6 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,5 @@
"tasks": {
"build_npm": "deno run -A scripts/build_npm.ts"
},
"imports": {
"ts-pattern": "npm:[email protected]",
"iteruyo": "https://deno.land/x/[email protected]/mod.ts",
"std/assert": "https://deno.land/[email protected]/assert/mod.ts",
"util/": "./src/util/"
}
"importMap": "import_map.json"
}
8 changes: 8 additions & 0 deletions import_map.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"imports": {
"ts-pattern": "npm:[email protected]",
"iteruyo": "https://deno.land/x/[email protected]/mod.ts",
"std/assert": "https://deno.land/[email protected]/assert/mod.ts",
"util/": "./src/util/"
}
}
1 change: 1 addition & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./src/mod.ts"

0 comments on commit d2db9ea

Please sign in to comment.