Skip to content

Commit

Permalink
chore: normalize config file for the current project
Browse files Browse the repository at this point in the history
  • Loading branch information
mineejo committed Dec 14, 2023
1 parent 2562ec1 commit a4ba36f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
{
"tasks": {
"dev": "deno run --watch main.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"test": "deno test -A",
"generate": "cd _generator && deno run -A _generator.ts && deno task fmt"
}
// cd .npm; npm publish --access public
"build": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run _build_npm.ts",
"generate": "cd _generator && deno run -A _generator.ts && deno fmt"
},
"fmt": {
"include": [
"./"
]
},
"exclude": [
"./.github",
"./.idea",
"./.git",
"./.npm"
]
}

0 comments on commit a4ba36f

Please sign in to comment.