We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
View package-lock.json and package.json at the root of the project.
package-lock.json
package.json
Both of these files are locking the major version numbers of the packages they use.
With the exception of Gulp (?), other devDependencies should not list a version number in package.json. It should list a star (*), like so:
*
{ "devDependencies": { "gulp": "^3.9.1", "gulp-sass": "*" } }
package-lock.json should be deleted from this repo. It will be created per-project upon npm install.
npm install
By following these guidelines, it will:
The text was updated successfully, but these errors were encountered:
cecfc87
adamglenn
No branches or pull requests
Steps to reproduce the issue
View
package-lock.json
andpackage.json
at the root of the project.Results
Both of these files are locking the major version numbers of the packages they use.
Expected results
With the exception of Gulp (?), other devDependencies should not list a version number in
package.json
. It should list a star (*
), like so:package-lock.json
should be deleted from this repo. It will be created per-project uponnpm install
.By following these guidelines, it will:
The text was updated successfully, but these errors were encountered: