Skip to content

Commit 5bcb353

Browse files
committed
Adopt package-lock.json and npm ci
1 parent 2f2b679 commit 5bcb353

12 files changed

+8793
-14
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
npm uninstall typescript --no-save
3232
npm uninstall tslint --no-save
33-
- run: npm install
33+
- run: npm ci
3434
- run: npm update
3535

3636
# Re: https://github.com/actions/setup-node/pull/125
@@ -45,4 +45,4 @@ jobs:
4545

4646
- name: Validate the browser can import TypeScript
4747
run: gulp test-browser-integration
48-
48+

.github/workflows/new-release-branch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sed -i -e 's/const versionMajorMinor = ".*"/const versionMajorMinor = "${{ github.event.client_payload.core_major_minor }}"/g' tests/baselines/reference/api/typescript.d.ts
2424
sed -i -e 's/const versionMajorMinor = ".*"/const versionMajorMinor = "${{ github.event.client_payload.core_major_minor }}"/g' tests/baselines/reference/api/tsserverlibrary.d.ts
2525
sed -i -e 's/const version = `${versionMajorMinor}.0-.*`/const version = `${versionMajorMinor}.0-${{ github.event.client_payload.core_tag || 'dev' }}`/g' src/compiler/corePublic.ts
26-
npm install
26+
npm ci
2727
gulp LKG
2828
npm test
2929
git diff

.github/workflows/release-branch-artifact.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
npm uninstall tslint --no-save
2222
- name: npm install and test
2323
run: |
24-
npm install
25-
npm update
24+
npm ci
2625
npm test
2726
env:
2827
CI: true
@@ -41,4 +40,3 @@ jobs:
4140
with:
4241
name: tgz
4342
path: typescript.tgz
44-

.github/workflows/set-version.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
sed -i -e 's/const versionMajorMinor = ".*"/const versionMajorMinor = "${{ github.event.client_payload.core_major_minor }}"/g' tests/baselines/reference/api/typescript.d.ts
3030
sed -i -e 's/const versionMajorMinor = ".*"/const versionMajorMinor = "${{ github.event.client_payload.core_major_minor }}"/g' tests/baselines/reference/api/tsserverlibrary.d.ts
3131
sed -i -e 's/const version = .*;/const version = "${{ github.event.client_payload.package_version }}" as string;/g' src/compiler/corePublic.ts
32-
npm install
32+
npm ci
3333
gulp LKG
3434
npm test
3535
git diff

.github/workflows/sync-branch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
git config user.name "TypeScript Bot"
3030
git fetch origin master
3131
git merge origin/master --no-ff
32-
npm install
32+
npm ci
3333
npm test
3434
git push

.github/workflows/update-lkg.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
git config user.email "[email protected]"
2121
git config user.name "TypeScript Bot"
22-
npm install
22+
npm ci
2323
gulp LKG
2424
npm test
2525
git diff

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ tests/cases/user/*/**/*.d.ts
8484
tests/baselines/reference/dt
8585
.failed-tests
8686
TEST-results.xml
87-
package-lock.json
8887
tests/cases/user/TypeScript-React-Starter/TypeScript-React-Starter
8988
tests/cases/user/TypeScript-Node-Starter/TypeScript-Node-Starter
9089
tests/cases/user/TypeScript-React-Native-Starter/TypeScript-React-Native-Starter

.npmrc

-1
This file was deleted.

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ branches:
1818

1919
install:
2020
- npm uninstall typescript --no-save
21-
- npm install
21+
- npm ci
2222

2323
cache:
2424
directories:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
FROM node:current
33
COPY . /typescript
44
WORKDIR /typescript
5-
RUN npm install
5+
RUN npm ci
66
RUN npm i -g gulp-cli
77
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Install [Gulp](https://gulpjs.com/) tools and dev dependencies:
6767

6868
```bash
6969
npm install -g gulp
70-
npm install
70+
npm ci
7171
```
7272

7373
Use one of the following to build and test:

0 commit comments

Comments
 (0)