Skip to content

Commit 0dac776

Browse files
committed
leave npm package-lock in its default, true setting
1 parent f80787a commit 0dac776

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

Diff for: .github/workflows/main-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: npm
27-
- run: npm ci --package-lock
27+
- run: npm ci
2828
- run: npm test
2929

3030
lint:
@@ -35,5 +35,5 @@ jobs:
3535
with:
3636
node-version: 18
3737
cache: npm
38-
- run: npm ci --package-lock
38+
- run: npm ci
3939
- run: npm run lint

Diff for: .github/workflows/main-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: npm
27-
- run: npm ci --package-lock
27+
- run: npm ci
2828
- run: npm test
2929

3030
lint:
@@ -35,5 +35,5 @@ jobs:
3535
with:
3636
node-version: 18
3737
cache: npm
38-
- run: npm ci --package-lock
38+
- run: npm ci
3939
- run: npm run lint

Diff for: .github/workflows/publish-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
cache: npm
2121
# NOTE: the explicit registry-url is currently needed for the auth token to work
2222
registry-url: https://registry.npmjs.org/
23-
- run: npm ci --package-lock
23+
- run: npm ci
2424
- run: npm test
2525
- run: npm run lint
2626
- run: npm publish --access public

Diff for: .npmrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
package-lock=false
21
yes=true

Diff for: example-cap-server/.npmrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
package-lock=false
21
yes=true

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"docs": "cd docs && bundle exec jekyll serve",
2424
"docs:install": "cd docs && npx shx rm -rf vendor Gemfile.lock && bundle install",
2525
"cloc": "npx cloc --vcs=git --read-lang-def=cloc.def src",
26-
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i --package-lock && npm run patch"
26+
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i && npm run patch"
2727
},
2828
"engines": {
2929
"node": ">=18.0.0"

0 commit comments

Comments
 (0)