-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cli): better error message when failed to resolve non explicit CJS module from ESM #26802
Draft
Hajime-san
wants to merge
2
commits into
denoland:main
Choose a base branch
from
Hajime-san:show-suggestion-for-cjs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+122
−3
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions
1
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/index.js
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 @@ | ||
module.exports = {}; |
5 changes: 5 additions & 0 deletions
5
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/package.json
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,5 @@ | ||
{ | ||
"name": "@denotest/cjs-non-explicit-file", | ||
"version": "1.0.0", | ||
"main": "index.js" | ||
} |
1 change: 1 addition & 0 deletions
1
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/server.js
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 @@ | ||
module.exports = require("./server.node"); |
3 changes: 3 additions & 0 deletions
3
tests/registry/npm/@denotest/cjs-non-explicit-file/1.0.0/server.node.js
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,3 @@ | ||
module.exports["server"] = function () { | ||
return 1; | ||
}; |
15 changes: 15 additions & 0 deletions
15
tests/specs/npm/sub_paths_cjs_import_faillure/__test__.jsonc
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,15 @@ | ||
{ | ||
"steps": [{ | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main1.js", | ||
"output": "sub_paths_cjs_import_faillure/main1.out", | ||
"exitCode": 1 | ||
}, { | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main2.js", | ||
"output": "sub_paths_cjs_import_faillure/main2.out", | ||
"exitCode": 1 | ||
}, { | ||
"args": "run --quiet sub_paths_cjs_import_faillure/main3.js", | ||
"output": "sub_paths_cjs_import_faillure/main3.out", | ||
"exitCode": 1 | ||
}] | ||
} |
2 changes: 2 additions & 0 deletions
2
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main1.js
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,2 @@ | ||
import Server from "npm:@denotest/[email protected]/server"; | ||
console.log(Server); |
5 changes: 5 additions & 0 deletions
5
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main1.out
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,5 @@ | ||
error: Unable to load [WILDCARD]server imported from [WILDCARD]main1.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.js"? | ||
|
||
Caused by: | ||
[WILDCARD] |
2 changes: 2 additions & 0 deletions
2
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main2.js
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,2 @@ | ||
import Server from "npm:@denotest/[email protected]/server.node"; | ||
console.log(Server); |
5 changes: 5 additions & 0 deletions
5
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main2.out
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,5 @@ | ||
error: Unable to load [WILDCARD]server.node imported from [WILDCARD]main2.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.node.js"? | ||
|
||
Caused by: | ||
[WILDCARD] |
3 changes: 3 additions & 0 deletions
3
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main3.js
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,3 @@ | ||
// deno-fmt-ignore | ||
const Server = await import("npm:@denotest/[email protected]/server"); | ||
console.log(Server); |
7 changes: 7 additions & 0 deletions
7
tests/specs/npm/sub_paths_cjs_import_faillure/sub_paths_cjs_import_faillure/main3.out
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,7 @@ | ||
error: Uncaught (in promise) TypeError: Unable to load [WILDCARD]server imported from [WILDCARD]main3.js | ||
Did you mean to import "npm:@denotest/[email protected]/server.js"? | ||
Caused by: | ||
[WILDCARD] | ||
const Server = await import("npm:@denotest/[email protected]/server"); | ||
^ | ||
at async [WILDCARD]main3.js:[WILDCARD] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should I remove the map when the module succeed to
load
as same as below?deno/cli/cache/parsed_source.rs
Lines 93 to 96 in bfc143a