Skip to content

Commit 8662195

Browse files
committed
remove package-lock.json files, update npm scripts to use npm install instead of npm ci
1 parent 0113bf1 commit 8662195

14 files changed

+25
-2164
lines changed

Diff for: .github/workflows/core.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
CI: true
6666
run: |
67-
npm ci
67+
npm install
6868
npm run prepack
6969
npm link
7070
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
CI: true
7575
run: |
76-
npm ci
76+
npm install
7777
npm run prepack
7878
npm link @nats-io/nats-core
7979
npm test

Diff for: .github/workflows/jetstream.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
env:
5555
CI: true
5656
run: |
57-
npm ci
57+
npm install
5858
npm run prepack
5959
npm link
6060
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
CI: true
6565
run: |
66-
npm ci
66+
npm install
6767
npm run prepack
6868
npm link @nats-io/jetstream
6969
npm test

Diff for: .github/workflows/kv.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
env:
5555
CI: true
5656
run: |
57-
npm ci
57+
npm install
5858
npm run prepack
5959
npm link
6060
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
CI: true
6565
run: |
66-
npm ci
66+
npm install
6767
npm run prepack
6868
npm link @nats-io/kv
6969
npm test

Diff for: .github/workflows/npm_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545
CI: true
4646
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
4747
run: |
48-
npm ci
48+
npm install
4949
npm run prepack
5050

Diff for: .github/workflows/obj.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
env:
5555
CI: true
5656
run: |
57-
npm ci
57+
npm install
5858
npm run prepack
5959
npm link
6060
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
CI: true
6565
run: |
66-
npm ci
66+
npm install
6767
npm run prepack
6868
npm link @nats-io/obj
6969
npm test

Diff for: .github/workflows/services.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
CI: true
6666
run: |
67-
npm ci
67+
npm install
6868
npm run prepack
6969
npm link
7070
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
CI: true
7575
run: |
76-
npm ci
76+
npm install
7777
npm run prepack
7878
npm link @nats-io/services
7979
npm test

Diff for: .github/workflows/transport-node-test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
env:
5454
CI: true
5555
run: |
56-
npm ci
56+
npm install
5757
npm run prepack
5858
npm link
5959
@@ -62,7 +62,7 @@ jobs:
6262
env:
6363
CI: true
6464
run: |
65-
npm ci
65+
npm install
6666
npm run prepack
6767
npm link
6868
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
CI: true
7373
run: |
74-
npm ci
74+
npm install
7575
npm run prepack
7676
npm link
7777
@@ -80,7 +80,7 @@ jobs:
8080
env:
8181
CI: true
8282
run: |
83-
npm ci
83+
npm install
8484
npm run prepack
8585
npm link
8686
@@ -89,7 +89,7 @@ jobs:
8989
env:
9090
CI: true
9191
run: |
92-
npm ci
92+
npm install
9393
npm run prepack
9494
npm link
9595
@@ -98,7 +98,7 @@ jobs:
9898
env:
9999
CI: true
100100
run: |
101-
npm ci
101+
npm install
102102
npm run prepack
103103
npm link @nats-io/nats-core
104104
npm link @nats-io/jetstream

Diff for: .gitignore

+8-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
11
.DS_Store
2-
deno.lock
3-
./package-lock.json
4-
5-
**/build/
6-
**/lib/
7-
**/node_modules/
8-
9-
debug/
102
.idea/
11-
.vscode/
12-
13-
14-
# nyc test coverage
3+
benchmark/
154
coverage/
16-
17-
# ide crud
18-
vcs.xml
19-
20-
5+
lib/
6+
debug/
7+
lib/
8+
build/
9+
package-lock.json
10+
deno.lock
11+
node_modules/

0 commit comments

Comments
 (0)