-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed support for implicit local modules
`require.resolve` behavior was changed in Node v12 to comply with Node resolution algorithm (see nodejs/node#29139) - not sure why we thought this behavior was desirable in the first place (introduced in 3142f2e - probably cargo-culting `require.resolve`'s observed behavior) however, on legacy Node versions behavior appears unchanged if the current working directory is the same as `rootDir` - I didn't bother enforcing modern behavior because legacy isn't worth the effort in the process, fixed legacy detection
- Loading branch information
Showing
3 changed files
with
25 additions
and
11 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,5 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- 8.9.3 | ||
- 8 | ||
- 10 | ||
|
||
|
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