ensure non 'MODULE_NOT_FOUND' exceptions are thrown by loadModule
This commit is contained in:
@ -230,6 +230,9 @@ function loadModule (modulePath) {
|
||||
tried.push(path.resolve(modulePath))
|
||||
module = require(path.resolve(modulePath))
|
||||
} catch (err) {
|
||||
if (!(err && err.code === 'MODULE_NOT_FOUND')) {
|
||||
throw err
|
||||
}
|
||||
const walkBack = require('walk-back')
|
||||
const foundPath = walkBack(process.cwd(), path.join('node_modules', 'local-web-server-' + modulePath))
|
||||
tried.push('local-web-server-' + modulePath)
|
||||
|
@ -39,7 +39,7 @@
|
||||
"dependencies": {
|
||||
"ansi-escape-sequences": "^3.0.0",
|
||||
"array-back": "^1.0.4",
|
||||
"command-line-args": "^3.0.5",
|
||||
"command-line-args": "^4.0.1",
|
||||
"command-line-usage": "^4.0.0",
|
||||
"config-master": "^2.1.0-0",
|
||||
"koa": "next",
|
||||
|
Reference in New Issue
Block a user