Skip to content

Commit 6c1e494

Browse files
committed
Make release-3.9 buildable
With this change, you can build the branch using `npm ci && npm run build`.
1 parent a7d8011 commit 6c1e494

File tree

5 files changed

+8766
-8
lines changed

5 files changed

+8766
-8
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ jobs:
3232
npm uninstall tslint --no-save
3333
- name: npm install and test
3434
run: |
35-
npm install
36-
npm update
35+
npm ci
3736
npm test
38-
37+
3938
- name: Validate the browser can import TypeScript
4039
run: gulp test-browser-integration
41-

.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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: node_js
22

33
node_js:
4-
- 'node'
4+
- '14'
5+
- '12'
56
- '10'
67
- '8'
78

@@ -18,7 +19,7 @@ branches:
1819

1920
install:
2021
- npm uninstall typescript --no-save
21-
- npm install
22+
- npm ci
2223

2324
cache:
2425
directories:

0 commit comments

Comments
 (0)