Skip to content

Commit c13151f

Browse files
committed
chore: configure package lock
1 parent 40c4f68 commit c13151f

File tree

6 files changed

+13709
-8
lines changed

6 files changed

+13709
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
npm --version
5959
6060
- name: Install npm dependencies
61-
run: npm install --progress=false --loglevel=warn --ignore-scripts
61+
run: npm ci --progress=false --loglevel=warn --ignore-scripts
6262

6363
- name: Type check
6464
run: npm run typecheck

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Create and push git tag, publish version to npm and create github release
4141
run: |
42-
npm install --progress=false --loglevel=warn --ignore-scripts
42+
npm ci --progress=false --loglevel=warn --ignore-scripts
4343
npm run release -- ${RELEASE_IT_OPTIONS[@]}
4444
env:
4545
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ dokcer-compose.yml
1717
/.nyc_output/
1818
/test-reports/
1919
node_modules
20-
package-lock.json
2120
.eslintcache
2221
!/bin/
2322
report.*.json

.npmrc

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
save-exact=false
22
scripts-prepend-node-path=true
3-
package-lock=false
4-
omit=optional
53
audit=false
64
fund=false
75
update-notifier=false
86
strict-peer-deps=true
9-
legacy-peer-deps=false

0 commit comments

Comments
 (0)