Skip to content

Commit

Permalink
build: move exclude to deno.jsonc top level (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdJoPaTo committed Aug 15, 2024
1 parent 8624b92 commit af4236f
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,16 @@
"bundle-web": "mkdir -p out deno_cache && cd bundling && DENO_DIR=$PWD/../deno_cache deno run --unstable --quiet --allow-net --allow-read --allow-env=DENO_DIR,XDG_CACHE_HOME,HOME,DENO_AUTH_TOKENS --allow-write=../out,$PWD/../deno_cache bundle-web.ts dev ../src/mod.ts",
"contribs": "deno run --allow-env --allow-read --allow-write=. --allow-net=api.github.com --allow-sys npm:all-contributors-cli"
},
"exclude": [
"./bundling/bundles",
"./deno_cache/",
"./node_modules/",
"./out/",
"./package-lock.json",
"./test/cov_profile"
],
"fmt": {
"indentWidth": 4,
"proseWrap": "preserve",
"exclude": [
"./deno_cache/",
"./node_modules/",
"./out/",
"./package-lock.json",
"./bundling/bundles",
"./test/cov_profile"
]
},
"lint": {
"exclude": [
"./deno_cache/",
"./node_modules/",
"./out/",
"./package-lock.json",
"./bundling/bundles"
]
"proseWrap": "preserve"
}
}

0 comments on commit af4236f

Please sign in to comment.