-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove std/node, it was merged into Deno itself (#3206)
Co-authored-by: Yoshiya Hinosawa <[email protected]>
- Loading branch information
Showing
1,224 changed files
with
11 additions
and
336,403 deletions.
There are no files selected for viewing
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,6 +1,2 @@ | ||
# Use Unix line endings in all text files. | ||
* text=auto eol=lf | ||
|
||
# Tell github these are vendored files. | ||
# Doesn't include them in the language statistics. | ||
node/_tools/test/ linguist-vendored |
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 |
---|---|---|
|
@@ -20,7 +20,6 @@ fs/ @kt3k | |
http/ @kt3k | ||
io/ @kt3k | ||
log/ @kt3k | ||
node/ @kt3k | ||
path/ @kt3k | ||
permissions/ @kt3k | ||
semver/ @kt3k | ||
|
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
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 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 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 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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -13,9 +13,6 @@ | |
"cov", | ||
"encoding/testdata/jsonc", | ||
"encoding/front_matter/testdata", | ||
"node/_tools/versions", | ||
"node/_tools/test", | ||
"node/integrationtest/yarn.js", | ||
"wasi/testdata" | ||
] | ||
} | ||
|
@@ -30,28 +27,18 @@ | |
"encoding/testdata/jsonc", | ||
"encoding/front_matter/testdata", | ||
"cov", | ||
"node/vendor", | ||
"node/_module/node_modules/", | ||
"node/_tools/versions", | ||
"node/_tools/test", | ||
"node/integrationtest/yarn.js", | ||
"wasi/testdata" | ||
] | ||
} | ||
}, | ||
"tasks": { | ||
"test": "deno test --doc --unstable --allow-all --coverage=./cov --ignore=node/,_tools/testdata", | ||
"test": "deno test --doc --unstable --allow-all --coverage=./cov --ignore=_tools/testdata", | ||
"test:browser": "git grep --name-only \"This module is browser compatible.\" | grep -v deno.json | grep -v .github/workflows | xargs deno cache --check --reload --config browser-compat.tsconfig.json", | ||
"fmt:licence-headers": "deno run --allow-read --allow-write ./_tools/check_licence.ts", | ||
"lint:deprecations": "deno run --allow-read --allow-net ./_tools/check_deprecation.ts", | ||
"lint:doc-imports": "deno run --allow-env --allow-read ./_tools/check_doc_imports.ts", | ||
"lint:check-assertions": "deno run --allow-read --allow-net ./_tools/check_assertions.ts", | ||
"lint": "deno lint && deno task node:lint-circular-deps && deno task fmt:licence-headers --check && deno task lint:deprecations && deno task lint:doc-imports && deno task lint:check-assertions", | ||
"node:lint-circular-deps": "deno run --allow-read --allow-net=deno.land ./node/_tools/check_circular_deps.ts", | ||
"node:unit": "deno test --unstable --allow-all --unsafely-ignore-certificate-errors node/ --ignore=node/_tools/test.ts,node/_tools/versions/", | ||
"node:test": "deno test --unstable --allow-all node/_tools/test.ts", | ||
"node:setup": "deno run --allow-read --allow-net --allow-write node/_tools/setup.ts", | ||
"node:check-unstable-api": "deno check --unstable ./node/module_all.ts", | ||
"lint": "deno lint && deno task fmt:licence-headers --check && deno task lint:deprecations && deno task lint:doc-imports && deno task lint:check-assertions", | ||
"build:crypto": "deno task --cwd crypto/_wasm wasmbuild", | ||
"build:varint": "deno task --cwd encoding/varint/_wasm wasmbuild", | ||
"wasmbuild": "deno run --unstable -A https://deno.land/x/[email protected]/main.ts --js-ext mjs --sync" | ||
|
Oops, something went wrong.