Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG package-lock.json version does not get bumped at second position #42

Open
alexanderniebuhr opened this issue Mar 1, 2021 · 0 comments

Comments

@alexanderniebuhr
Copy link

we do have a vscode extension, which adds itself as a package in package-lock.json - but it just bumps the version in line 3, but not in line 8, which is reference to own package. After npm install this version gets changed too..

{
  "name": "generic-vscode-extension",
  "version": "0.1.0", // this gets bumped
  "lockfileVersion": 2,
  "requires": true,
  "packages": {
    "": {
      "version": "0.0.9", // this is just updated after running npm install, so not working
      "license": "MIT",
      "devDependencies": {
        ...
      }
    },
    ...
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant