I am on Node 8.9.4. I have received the following error:
Cannot find module '../package' from 'configure.js'
I believe the issue is related to trying to require package without the .json extension. When I changed require('../package') to require('../package.json') in lib/configure.js the issue was resolved.
I am on Node 8.9.4. I have received the following error:
Cannot find module '../package' from 'configure.js'
I believe the issue is related to trying to require
package
without the.json
extension. When I changedrequire('../package')
torequire('../package.json')
inlib/configure.js
the issue was resolved.Might be related to the newer version of Node.