Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 7daffec

Browse files
committed
build: update to typescript 3.8
1 parent 9d09d79 commit 7daffec

File tree

3 files changed

+952
-869
lines changed

3 files changed

+952
-869
lines changed

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,21 @@
4141
"@types/node": "^12.11.1"
4242
},
4343
"devDependencies": {
44-
"@angular-devkit/architect": "^0.900.3",
45-
"@angular-devkit/build-angular": "^0.900.3",
46-
"@angular-devkit/core": "^9.0.3",
47-
"@angular-devkit/schematics": "^9.0.3",
48-
"@angular/animations": "^9.0.2",
49-
"@angular/bazel": "^9.0.2",
50-
"@angular/cli": "^9.0.2",
51-
"@angular/common": "^9.0.2",
52-
"@angular/compiler": "^9.0.2",
53-
"@angular/compiler-cli": "^9.0.2",
54-
"@angular/core": "^9.0.2",
55-
"@angular/platform-browser": "^9.0.2",
56-
"@angular/platform-browser-dynamic": "^9.0.2",
57-
"@angular/platform-server": "^9.0.2",
58-
"@angular/router": "^9.0.2",
44+
"@angular-devkit/architect": "^0.901.0-next.3",
45+
"@angular-devkit/build-angular": "^0.901.0-next.3",
46+
"@angular-devkit/core": "^9.1.0-next.3",
47+
"@angular-devkit/schematics": "^9.1.0-next.3",
48+
"@angular/animations": "^9.1.0-next.4",
49+
"@angular/bazel": "^9.1.0-next.4",
50+
"@angular/cli": "^9.1.0-next.3",
51+
"@angular/common": "^9.1.0-next.4",
52+
"@angular/compiler": "^9.1.0-next.4",
53+
"@angular/compiler-cli": "^9.1.0-next.4",
54+
"@angular/core": "^9.1.0-next.4",
55+
"@angular/platform-browser": "^9.1.0-next.4",
56+
"@angular/platform-browser-dynamic": "^9.1.0-next.4",
57+
"@angular/platform-server": "^9.1.0-next.4",
58+
"@angular/router": "^9.1.0-next.4",
5959
"@bazel/bazel": "2.1.0",
6060
"@bazel/buildifier": "^2.0.0",
6161
"@bazel/hide-bazel-files": "~1.4.0",
@@ -64,7 +64,7 @@
6464
"@bazel/karma": "~1.4.0",
6565
"@bazel/typescript": "~1.4.0",
6666
"@hapi/hapi": "^18.4.0",
67-
"@schematics/angular": "^9.0.3",
67+
"@schematics/angular": "^9.1.0-next.3",
6868
"@types/browser-sync": "^2.26.1",
6969
"@types/express": "4.17.3",
7070
"@types/express-serve-static-core": "4.17.2",
@@ -101,7 +101,7 @@
101101
"tslib": "~1.11.0",
102102
"tslint": "^6.0.0",
103103
"tsutils": "^3.0.0",
104-
"typescript": "~3.7.4",
104+
"typescript": "~3.8.3",
105105
"xhr2": "^0.2.0",
106106
"zone.js": "^0.10.2"
107107
}

tools/defaults.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ def ts_library(tsconfig = None, deps = [], testonly = False, **kwargs):
3232
**kwargs
3333
)
3434

35-
NG_VERSION = "^9.0.6"
35+
NG_VERSION = "^9.1.0-next.4"
3636
RXJS_VERSION = "^6.5.3"
3737
HAPI_VERSION = "^18.4.0"
3838
EXPRESS_VERSION = "^4.15.2"
3939
EXPRESS_TYPES_VERSION = "^4.17.0"
40-
DEVKIT_CORE_VERSION = "^9.0.6"
41-
DEVKIT_ARCHITECT_VERSION = "^0.900.6"
40+
DEVKIT_CORE_VERSION = "^9.1.0-next.3"
41+
DEVKIT_ARCHITECT_VERSION = "^0.901.0-next.3"
4242
TSLIB_VERSION = "^1.10.0"
4343

4444
NGUNIVERSAL_SCOPED_PACKAGES = ["@nguniversal/%s" % p for p in [

0 commit comments

Comments
 (0)