Skip to content

Commit

Permalink
chore: update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
rycont committed Nov 3, 2024
1 parent bc54989 commit 5d51f18
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 4 deletions.
9 changes: 6 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@
"tasks": {
"coverage": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage --detailed ./cov && rm -rf ./cov",
"coverage-list": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage ./cov && rm -rf ./cov",
"build": "deno run --allow-net --allow-write --allow-read --allow-env --allow-run ./build.ts > yaksok.js",
"build-demo": "deno run --allow-net --allow-write --allow-read --allow-env --allow-run ./build.ts > ./demo/yaksok.js"
"build": "deno run --allow-net --allow-write --allow-read --allow-env --allow-run ./bundle.ts",
"build-demo": "deno task build && mv ./dist/index.js ./demo/yaksok.js"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
}
}
},
"name": "@yaksok-ts/core",
"version": "0.1.9",
"exports": "./index.ts"
}
125 changes: 124 additions & 1 deletion deno.lock

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

0 comments on commit 5d51f18

Please sign in to comment.