Skip to content

Defer to root package.json for npm packages

Defer to root package.json for npm packages

Previously we had to make sure to update the version in the root package.json and in each modules/. And it caused confusion when you tried to npm link a module but also needed to make sure to npm link in the modules/xxx


  • Find: .*"(?!version).*": "[\^~=<>]?\d.*",?\n In: modules\**\package.json
  • Then manually clean up whitespace and commas
  • Clean out the dependencies for modules/ in package-lock.json
Edited by Eric Eastwood

Merge request reports