Skip to content

Commit 86e1e6c

Browse files
IgorMinarmatsko
authored andcommitted
feat: typescript 3.6 support (angular#32946)
BREAKING CHANGE: typescript 3.4 and 3.5 are no longer supported, please update to typescript 3.6 Fixes angular#32380 PR Close angular#32946
1 parent 117ca7c commit 86e1e6c

File tree

89 files changed

+15560
-5343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+15560
-5343
lines changed

.circleci/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ jobs:
653653
# the ESM5/ES2015 output. See: https://github.com/angular/angular/issues/27966
654654
# - run: yarn gulp source-map-test
655655

656-
# Job to run unit tests from angular/material2. Needs a browser since all
656+
# Job to run unit tests from angular/components. Needs a browser since all
657657
# component unit tests assume they're running in the browser environment.
658658
material-unit-tests:
659659
executor:
@@ -836,9 +836,10 @@ workflows:
836836
- build-ivy-npm-packages
837837
- legacy-unit-tests-saucelabs
838838
- legacy-misc-tests
839-
- material-unit-tests:
840-
requires:
841-
- build-ivy-npm-packages
839+
# FIXME: temporarily disabled until the components repo updates to typescript 3.6
840+
#- material-unit-tests:
841+
# requires:
842+
# - build-ivy-npm-packages
842843
- test_zonejs:
843844
requires:
844845
- setup

aio/aio-builds-setup/dockerbuild/scripts-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"shelljs": "^0.8.2",
3535
"source-map-support": "^0.5.9",
3636
"tar-stream": "^1.6.1",
37-
"tslib": "^1.9.3"
37+
"tslib": "^1.10.0"
3838
},
3939
"devDependencies": {
4040
"@types/body-parser": "^1.17.0",

aio/aio-builds-setup/dockerbuild/scripts-js/yarn.lock

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2444,7 +2444,12 @@ touch@^3.1.0:
24442444
dependencies:
24452445
nopt "~1.0.10"
24462446

2447-
tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.3:
2447+
tslib@^1.10.0:
2448+
version "1.10.0"
2449+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
2450+
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
2451+
2452+
tslib@^1.8.0, tslib@^1.8.1:
24482453
version "1.9.3"
24492454
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
24502455

aio/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@
105105
"zone.js": "~0.10.2"
106106
},
107107
"devDependencies": {
108-
"@angular-devkit/build-angular": "~0.900.0-next.8",
109-
"@angular/cli": "9.0.0-next.8",
108+
"@angular-devkit/build-angular": "0.900.0-next.11",
109+
"@angular/cli": "9.0.0-next.11",
110110
"@angular/compiler-cli": "^9.0.0-next.10",
111111
"@angular/language-service": "^9.0.0-next.10",
112112
"@types/jasmine": "^3.4.2",
@@ -165,7 +165,7 @@
165165
"tree-kill": "^1.1.0",
166166
"ts-node": "^8.4.1",
167167
"tslint": "^5.20.0",
168-
"typescript": "~3.5.3",
168+
"typescript": "~3.6.4",
169169
"uglify-js": "^3.0.15",
170170
"unist-util-filter": "^0.2.1",
171171
"unist-util-source": "^1.0.1",

aio/tools/examples/shared/boilerplate/cli-ajs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"angular-route": "1.7.8",
2626
"core-js": "^2.5.4",
2727
"rxjs": "^6.5.1",
28-
"tslib": "^1.9.0",
28+
"tslib": "^1.10.0",
2929
"web-animations-js": "^2.3.1",
3030
"zone.js": "~0.10.2"
3131
},

aio/tools/examples/shared/boilerplate/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"angular-in-memory-web-api": "^0.8.0",
2424
"core-js": "^2.5.4",
2525
"rxjs": "^6.5.1",
26-
"tslib": "^1.9.0",
26+
"tslib": "^1.10.0",
2727
"web-animations-js": "^2.3.1",
2828
"zone.js": "~0.10.2"
2929
},

aio/tools/examples/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"express": "^4.14.1",
4040
"rxjs": "^6.5.1",
4141
"systemjs": "0.19.39",
42-
"tslib": "^1.9.0",
42+
"tslib": "^1.10.0",
4343
"web-animations-js": "^2.3.1",
4444
"zone.js": "~0.10.2"
4545
},

aio/tools/examples/shared/yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7680,6 +7680,11 @@ ts-node@~7.0.0:
76807680
source-map-support "^0.5.6"
76817681
yn "^2.0.0"
76827682

7683+
tslib@^1.10.0:
7684+
version "1.10.0"
7685+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
7686+
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
7687+
76837688
tslib@^1.8.0, tslib@^1.8.1:
76847689
version "1.9.0"
76857690
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"

0 commit comments

Comments
 (0)