Skip to content

Commit

Permalink
include only necessary pkgs
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Sep 26, 2024
1 parent 757349a commit 74f0355
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"version": "0.5.1",
"name": "@deco/deno-ast-wasm",
"exports": "./mod.ts",
"exports": {
".": "./mod.ts",
"./types": "./wasm.d.ts"
},
"tasks": {
"build": "deno run -A --unstable --config deno.jsonc https://raw.githubusercontent.com/denoland/wasmbuild/0.17.1/main.ts",
// Use a canary / local version of wasmbuild
Expand All @@ -12,6 +15,8 @@
},
"publish": {
"include": [
"./lib/deno_ast_wasm.generated.d.ts",
"./lib/deno_ast_wasm.generated.js",
"./mod.ts",
"./wasm.d.ts",
"README.md"
Expand Down

0 comments on commit 74f0355

Please sign in to comment.