Uh oh!
There was an error while loading. Please reload this page.
doc: explain error message on missing main file - #5812
Closed
drywolf wants to merge 1 commit into
Closed
Conversation
MylesBorins
commented
Mar 20, 2016
Contributor
LGTM edit: added a nit regarding wrapping lines, if that is followed then LGTM stands |
Contributor
There was a problem hiding this comment.
can you wrap this at 80 characters. you will notice this is the longest line in the file
drywolf
commented
Mar 20, 2016
ContributorAuthor
I realized it as well after I created the PR, I added another commit with properly wrapped lines. 😉 |
MylesBorins
commented
Mar 20, 2016
Contributor
@drywolf would you be able to squash those into a single commit please. |
drywolfforce-pushed
the
package-json-main-error-doc
branch
from
March 20, 2016 21:40
f806d26 to
85f9b40Comparedrywolf
commented
Mar 20, 2016
ContributorAuthor
@thealphanerd done. |
benjamingr
commented
Mar 20, 2016
Member
LGTM |
jasnell
commented
Mar 21, 2016
Member
LGTM with a nit |
Added a hint saying that node uses the default "Cannot find module" error when requiring a module for which the "main" file specified in the package.json is missing.
drywolfforce-pushed
the
package-json-main-error-doc
branch
from
March 21, 2016 19:00
85f9b40 to
ba95e02Comparedrywolf
commented
Mar 21, 2016
ContributorAuthor
@jasnell fixed s/node/Node.js/ |
jasnell pushed a commit
that referenced
this pull request
Mar 21, 2016
Added a hint saying that node uses the default "Cannot find module" error when requiring a module for which the "main" file specified in the package.json is missing. PR-URL: #5812 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
jasnell
commented
Mar 21, 2016
Member
Landed in f70c71f |
Fishrock123 pushed a commit
that referenced
this pull request
Mar 22, 2016
Added a hint saying that node uses the default "Cannot find module" error when requiring a module for which the "main" file specified in the package.json is missing. PR-URL: #5812 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
MylesBorins pushed a commit
that referenced
this pull request
Mar 30, 2016
Added a hint saying that node uses the default "Cannot find module" error when requiring a module for which the "main" file specified in the package.json is missing. PR-URL: #5812 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
MylesBorins pushed a commit
that referenced
this pull request
Mar 30, 2016
Added a hint saying that node uses the default "Cannot find module" error when requiring a module for which the "main" file specified in the package.json is missing. PR-URL: #5812 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This file contains hidden or 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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description of change
Added a hint to documentation saying that node uses the default "Cannot find module"
error when requiring a module for which the "main" file specified in
the package.json is missing.
for details see: #5758