drop unnecessary bits from package-lock.json
This is actually the result I get running `npm install`. It seems like there are a bunch of unnecessary dependencies in the package-lock file, some of which have security vulnerabilities. These don't overly matter, since we use node only for the stylelint check, but if we're not using them, it's better to be tidy. Note that npm also seems to want to use "^" rules instead of "~" in the actual package.json.
This commit is contained in:
Родитель
c45d466120
Коммит
966fa0f0e0
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -4,13 +4,13 @@
|
|||
"homepage": "https://git-scm.com",
|
||||
"scss": "./app/assets/stylesheets/git-scm.css.scss",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.5",
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-autoprefixer": "~2.2.0",
|
||||
"grunt-parker": "~0.1.0",
|
||||
"grunt-stylelint": "^0.9.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"stylelint": "7.13.0",
|
||||
"stylelint": "^7.13.0",
|
||||
"stylelint-config-primer": "2.2.3"
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче