-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): Correctly search for loaded modules in node 12 (#2612)
Node 12 has corrected how the require.resolve function applied un-documented behavior, so that it is needed to make relative search paths explicit (./). Related: nodejs/node#27583
- Loading branch information
1 parent
deed353
commit 286866a
Showing
4 changed files
with
66 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import process = require('process'); | ||
|
||
// process.versions.node is like "12.3.1" | ||
const [strMajor, strMinor, strPatch, ] = process.versions.node.split('.'); | ||
|
||
/** | ||
* The major version of the node runtime. | ||
*/ | ||
export const major = Number(strMajor); | ||
|
||
/** | ||
* The minor version of the node runtime. | ||
*/ | ||
export const minor = Number(strMinor); | ||
|
||
/** | ||
* The revision of the node runtime. | ||
*/ | ||
export const patch = Number(strPatch); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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