Skip to content

Commit

Permalink
fix: deno.jsonc exports
Browse files Browse the repository at this point in the history
Signed-off-by: Okiki <okikio.dev@gmail.com>
  • Loading branch information
okikio committed Feb 21, 2024
1 parent 3dfa025 commit 347c1ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"lock": false,
"exports": {
".": "./mod.ts",
"./byte_methods": "byte_methods.ts",
"./constants": "constants.ts",
"./iterable": "iterable.ts",
"./mod": "mod.ts"
"./byte_methods": "./byte_methods.ts",
"./constants": "./constants.ts",
"./iterable": "./iterable.ts",
"./mod": "./mod.ts"
},
"tasks": {
"build": "deno run --allow-env=DENO_DIR,XDG_DATA_HOME,XDG_CACHE_HOME,HOME,DENO_AUTH_TOKENS --allow-read --allow-write --allow-net=deno.land --allow-run=pnpm scripts/build.ts",
Expand Down

0 comments on commit 347c1ce

Please sign in to comment.