You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run npm install hapi@9.x it does not install wreck even though it is a dependency of subtext. I suspect it is missing from the npm-shrinkwrap.json file.
The text was updated successfully, but these errors were encountered:
Note that this issue causes hapi 9.0.0 installs to be completely broken unless you manually npm install wreck, or already had it as a dependency.
> var Hapi = require('hapi');
Error: Cannot find module 'wreck'
at Function.Module._resolveFilename (module.js:336:15)
at Function.Module._load (module.js:278:25)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (/Users/gil/test/node_modules/hapi/node_modules/subtext/lib/index.js:14:13)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
PR #2701 seems to fix this for me. Someone mind giving this a whirl other than me? npm install git://github.com/devinivy/hapi.git#9deps should pull it in for you.
@hueniverse can you close the milestone if this is the only issue in the release (I assume yes since it is on npm) this way the changelog on hapijs.com catches it ;)
lockbot
locked as resolved and limited conversation to collaborators
Jan 11, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run
npm install hapi@9.x
it does not installwreck
even though it is a dependency ofsubtext
. I suspect it is missing from the npm-shrinkwrap.json file.The text was updated successfully, but these errors were encountered: