-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We will delegate building to JSR before the 2.0 release.
- Loading branch information
1 parent
1caa9cd
commit d120405
Showing
9 changed files
with
6 additions
and
197 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Dependency directories | ||
node_modules/ | ||
|
||
# lock files will not be published, so no need to store it | ||
package-lock.json | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Test coverage | ||
test/coverage | ||
test/cov_profile | ||
coverage.lcov | ||
|
||
# Build output | ||
deno_cache/ | ||
out/ | ||
/test/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["denoland.vscode-deno", "editorconfig.editorconfig"] | ||
"recommendations": ["denoland.vscode-deno"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,12 @@ | ||
{ | ||
"lock": false, | ||
"nodeModulesDir": "none", | ||
"tasks": { | ||
"check": "deno cache --check=all --allow-import src/mod.ts", | ||
"backport": "deno run --no-prompt --allow-read=. --allow-write=. https://deno.land/x/[email protected]/src/cli.ts tsconfig.json", | ||
"test": "deno test --seed=123456 --parallel --allow-import ./test/", | ||
"dev": "deno fmt && deno lint && deno task test && deno task check", | ||
"coverage": "rm -rf ./test/cov_profile && deno task test --coverage=./test/cov_profile && deno coverage --lcov --output=./coverage.lcov ./test/cov_profile", | ||
"report": "genhtml ./coverage.lcov --output-directory ./test/coverage/ && echo 'Point your browser to test/coverage/index.html to see the test coverage report.'", | ||
"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", | ||
"check": "deno check --all src/mod.ts", | ||
"test": "deno test --seed=123456 -I test/", | ||
"ok": "deno fmt && deno lint && deno task test && deno task check", | ||
// TODO: bring back coverage reports | ||
"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" | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
d120405
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Closes #710