This repository was archived by the owner on Aug 15, 2024. It is now read-only.
Dependency assert
broken; webpack 2. #59
Open
Description
I encountered Error Uncaught TypeError: util.inherits is not a function
while upgrading to webpack 2.
I traced the cause to the dependency "inherits": "2.0.1"
instead of "^2.0.1"
or the like in util
, which is used by assert
, which is used by node-libs-browser
.
My current hideous workaround is adding to package.json
:
"dependencies": {
"inherits": "^2.0.3"
and to webpack.config.js
:
resolve: {
alias: {
inherits$: path.resolve(__dirname, 'node_modules/inherits')
I also filed a bug with util
at Outdated dependency inherits
causes trouble upstream; Webpack 2.
Metadata
Metadata
Assignees
Labels
No labels