-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(publish): silence warnings for sloppy imports and node builtins w…
…ith env var (#22760) An undocumented "DENO_DISABLE_PEDANTIC_NODE_WARNINGS" env var can be used to silence warnings for sloppy imports and node builtins without `node:` prefix.
- Loading branch information
1 parent
588dd5e
commit f0ec4fe
Showing
6 changed files
with
79 additions
and
13 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Download http://localhost:4545/npm/registry/@types/node | ||
Download http://localhost:4545/npm/registry/@types/node/node-18.8.2.tgz | ||
Check file:///[WILDCARD]/publish/bare_node_builtins/mod.ts | ||
Checking for slow types in the public API... | ||
Check file:///[WILDCARD]/publish/bare_node_builtins/mod.ts | ||
Simulating publish of @foo/bar@1.0.0 with files: | ||
file:///[WILDCARD]/publish/bare_node_builtins/deno.json (87B) | ||
file:///[WILDCARD]/publish/bare_node_builtins/mod.ts (121B) | ||
Warning Aborting due to --dry-run |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Check file:///[WILDCARD]/publish/sloppy_imports/mod.ts | ||
Checking for slow types in the public API... | ||
Check file:///[WILDCARD]/publish/sloppy_imports/mod.ts | ||
Simulating publish of @foo/bar@1.0.0 with files: | ||
file:///[WILDCARD]/publish/sloppy_imports/b/index.ts (27B) | ||
file:///[WILDCARD]/publish/sloppy_imports/deno.json (87B) | ||
file:///[WILDCARD]/publish/sloppy_imports/mod.ts (35B) | ||
Warning Aborting due to --dry-run |