Skip to content

Commit

Permalink
feat: Upgrade Node Package Manager lock file package-lock.json to v…
Browse files Browse the repository at this point in the history
…ersion 2 (parse-community#8285)

BREAKING CHANGE: The Node Package Manager lock file `package-lock.json` is upgraded to version 2; while it is backwards with version 1 for the npm installer, consider this if you run any non-npm analysis tools that use the lock file (parse-community#8285)
  • Loading branch information
dblythy committed Dec 22, 2022
1 parent 49388df commit ee72467
Show file tree
Hide file tree
Showing 7 changed files with 24,493 additions and 4,535 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
"node": true,
"es6": true
},
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"plugins": [
"flowtype"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
"sourceType": "module",
"requireConfigFile": false
},
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Check NPM lock file version
uses: mansona/npm-lockfile-version@v1
with:
version: 1
version: 2
check-mongo:
strategy:
matrix:
Expand Down

0 comments on commit ee72467

Please sign in to comment.