Skip to content

Commit 55a03f4

Browse files
committed
feat: typescript 3.6 support
BREAKING CHANGE: typescript 3.4 and 3.5 are no longer supported, please update to typescript 3.6
1 parent 01e4d44 commit 55a03f4

13 files changed

Lines changed: 22 additions & 148 deletions

File tree

integration/bazel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@bazel/protractor": "0.37.1",
2828
"@bazel/typescript": "0.37.1",
2929
"@types/jasmine": "2.8.8",
30-
"typescript": "3.4.2"
30+
"typescript": "3.6.3"
3131
},
3232
"scripts": {
3333
"test": "bazel build ... --noshow_progress && bazel test ...",

integration/typings_test_ts34/tsconfig.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

integration/typings_test_ts35/include-all.ts

Lines changed: 0 additions & 77 deletions
This file was deleted.

integration/typings_test_ts35/package.json

Lines changed: 0 additions & 30 deletions
This file was deleted.
File renamed without changes.

integration/typings_test_ts34/package.json renamed to integration/typings_test_ts36/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-integration",
3-
"description": "Assert that users with TypeScript 3.3 can type-check an Angular application",
3+
"description": "Assert that users with TypeScript 3.6 can type-check an Angular application",
44
"version": "0.0.0",
55
"license": "MIT",
66
"dependencies": {
@@ -21,7 +21,7 @@
2121
"@angular/upgrade": "file:../../dist/packages-dist/upgrade",
2222
"@types/jasmine": "2.5.41",
2323
"rxjs": "file:../../node_modules/rxjs",
24-
"typescript": "3.4.2",
24+
"typescript": "3.6.3",
2525
"zone.js": "file:../../node_modules/zone.js"
2626
},
2727
"scripts": {

integration/typings_test_ts35/tsconfig.json renamed to integration/typings_test_ts36/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"experimentalDecorators": true,
55
"module": "commonjs",
66
"moduleResolution": "node",
7-
"outDir": "../../dist/typings_test_ts35/",
7+
"outDir": "../../dist/typings_test_ts36/",
88
"rootDir": ".",
99
"target": "es5",
1010
"lib": [

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@
109109
"source-map": "^0.6.1",
110110
"source-map-support": "0.5.9",
111111
"systemjs": "0.18.10",
112-
"tsickle": "0.36.0",
112+
"tsickle": "0.37.0",
113113
"tslib": "^1.9.0",
114114
"tslint": "5.7.0",
115-
"typescript": "~3.5.3",
115+
"typescript": "~3.6.3",
116116
"xhr2": "0.1.4",
117117
"yargs": "13.1.0",
118118
"zone.js": "^0.10.2"

packages/bazel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
"@types/node": "6.0.84",
3535
"semver": "^5.6.0",
3636
"shelljs": "0.8.2",
37-
"tsickle": "^0.35.0"
37+
"tsickle": "^0.37.0"
3838
},
3939
"peerDependencies": {
4040
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",
4141
"@bazel/typescript": "0.*",
42-
"typescript": ">=3.4 <3.6"
42+
"typescript": ">=3.6 <3.7"
4343
},
4444
"repository": {
4545
"type": "git",

packages/compiler-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"peerDependencies": {
2525
"@angular/compiler": "0.0.0-PLACEHOLDER",
26-
"typescript": ">=3.4 <3.6"
26+
"typescript": ">=3.6 <3.7"
2727
},
2828
"engines": {
2929
"node": ">=8.0"

0 commit comments

Comments
 (0)