google / closure-compiler-js

Package for the JS version of closure-compiler for use via NPM
https://github.com/google/closure-compiler
Apache License 2.0
1.84k stars 64 forks source link

Remove wildcards from dependency versions #101

Closed jplaisted closed 6 years ago

jplaisted commented 6 years ago

This appears to be causing conflicting dependencies around the inherits module.

$ npm ls inherits ├─┬ mocha@3.5.3 │ └─┬ glob@7.1.1 │ └── UNMET DEPENDENCY inherits@2 └─┬ vinyl@2.0.1 └─┬ cloneable-readable@1.0.0 ├── inherits@2.0.3 └─┬ through2@2.0.3 └─┬ readable-stream@2.3.3 └── inherits@2.0.3

npm ERR! missing: inherits@2, required by glob@7.1.1

jplaisted commented 6 years ago

https://github.com/npm/npm/issues/19393 seems related and there are other work arounds in there. Will look into them.