Skip to content

Commit

Permalink
Update deno.jsonc
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx committed Nov 9, 2023
1 parent 87602c1 commit f93ea74
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"tasks": {
"clear-dist": "rm -rf dist/*",
"copy-files-to-dist": "deno run -A https://raw.githubusercontent.com/DenoPlayground/CopyFiles/main/cli.ts ./src/client/ ./dist/ --exts=.html",
"build": "deno task clear-dist; deno task copy-files-to-dist & deno run -A https://deno.land/x/[email protected]/mod.js --bundle --target=es6 --format=esm --outdir=dist/ --entry-names=\"[dir]/bundle.min\" ./**/index.ts",
"build:watch": "deno task clear-dist; deno task copy-files-to-dist & deno run -A https://deno.land/x/[email protected]/mod.js --bundle --minify --target=es6 --outdir=dist/ --entry-names=\"[dir]/bundle.min\" ./**/index.ts --watch",
"build": "deno task clear-dist; deno task copy-files-to-dist & deno run -A https://deno.land/x/[email protected]/mod.js --bundle --minify --target=es6 --format=esm --outdir=dist/ --entry-names=\"[dir]/bundle.min\" ./**/index.ts",
"build:watch": "deno task clear-dist; deno task copy-files-to-dist & deno run -A https://deno.land/x/[email protected]/mod.js --bundle --minify --target=es6 --format=esm --outdir=dist/ --entry-names=\"[dir]/bundle.min\" ./**/index.ts --watch",
"build:help": "deno run -A https://deno.land/x/[email protected]/mod.js --help",
"lint": "deno lint"
},
"exclude": [
"**/*.test.ts"
"./dist/"
],
"test": {
"include": [
Expand All @@ -17,17 +17,11 @@
},
"compilerOptions": {
"experimentalDecorators": true,
"allowImportingTsExtensions": true,
"target": "es2022",
"module": "es2022",
"lib": [
"dom",
"dom.iterable"
]
},
"lint": {
"exclude": [
"./dist/"
]
}
}

0 comments on commit f93ea74

Please sign in to comment.