Skip to content

Commit 36e0be7

Browse files
committed
build: update to angular 7.2.1
1 parent b137873 commit 36e0be7

File tree

3 files changed

+123
-119
lines changed

3 files changed

+123
-119
lines changed

WORKSPACE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
55
# Add NodeJS rules (explicitly used for sass bundle rules)
66
http_archive(
77
name = "build_bazel_rules_nodejs",
8-
url = "https://github.com/bazelbuild/rules_nodejs/archive/0.16.4.zip",
9-
strip_prefix = "rules_nodejs-0.16.4",
8+
url = "https://github.com/bazelbuild/rules_nodejs/archive/0.16.5.zip",
9+
strip_prefix = "rules_nodejs-0.16.5",
1010
)
1111

1212
# Add TypeScript rules
1313
http_archive(
1414
name = "build_bazel_rules_typescript",
1515
# Explicitly depend on https://github.com/bazelbuild/rules_typescript/pull/327 which fixes the devserver
1616
# for windows. Once this has been reviewed and merged, we can switch back to a normal release.
17-
url = "https://github.com/bazelbuild/rules_typescript/archive/1bb017e2f9c58f96bac8ddda2ed4a170282bc58e.zip",
18-
strip_prefix = "rules_typescript-1bb017e2f9c58f96bac8ddda2ed4a170282bc58e",
17+
url = "https://github.com/bazelbuild/rules_typescript/archive/2e761b53ca465a140c4a265cb80887e7bcf61eb9.zip",
18+
strip_prefix = "rules_typescript-2e761b53ca465a140c4a265cb80887e7bcf61eb9",
1919
)
2020

2121
# Add Angular source and Bazel rules.
2222
http_archive(
2323
name = "angular",
24-
url = "https://github.com/angular/angular/archive/7.1.3.zip",
25-
strip_prefix = "angular-7.1.3",
24+
url = "https://github.com/angular/angular/archive/7.2.1.zip",
25+
strip_prefix = "angular-7.2.1",
2626
)
2727

2828
# Add RxJS as repository because those are needed in order to build Angular from source.

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,36 +29,36 @@
2929
"version": "7.2.1",
3030
"requiredAngularVersion": ">=7.0.0",
3131
"dependencies": {
32-
"@angular/animations": "^7.1.3",
33-
"@angular/common": "^7.1.3",
34-
"@angular/compiler": "^7.1.3",
35-
"@angular/core": "^7.1.3",
36-
"@angular/elements": "^7.1.3",
37-
"@angular/forms": "^7.1.3",
38-
"@angular/platform-browser": "^7.1.3",
32+
"@angular/animations": "^7.2.1",
33+
"@angular/common": "^7.2.1",
34+
"@angular/compiler": "^7.2.1",
35+
"@angular/core": "^7.2.1",
36+
"@angular/elements": "^7.2.1",
37+
"@angular/forms": "^7.2.1",
38+
"@angular/platform-browser": "^7.2.1",
3939
"@webcomponents/custom-elements": "^1.1.0",
40-
"core-js": "^2.6.0",
40+
"core-js": "^2.6.1",
4141
"rxjs": "^6.3.3",
4242
"systemjs": "0.19.43",
4343
"tsickle": "^0.34.0",
4444
"tslib": "^1.9.3",
4545
"zone.js": "^0.8.26"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/core": "^7.1.2",
49-
"@angular-devkit/schematics": "^7.1.2",
50-
"@angular/bazel": "^7.1.3",
51-
"@angular/compiler-cli": "^7.1.3",
52-
"@angular/http": "^7.1.3",
53-
"@angular/platform-browser-dynamic": "^7.1.3",
54-
"@angular/platform-server": "^7.1.3",
55-
"@angular/router": "^7.1.3",
48+
"@angular-devkit/core": "^7.2.2",
49+
"@angular-devkit/schematics": "^7.2.2",
50+
"@angular/bazel": "^7.2.1",
51+
"@angular/compiler-cli": "^7.2.1",
52+
"@angular/http": "^7.2.1",
53+
"@angular/platform-browser-dynamic": "^7.2.1",
54+
"@angular/platform-server": "^7.2.1",
55+
"@angular/router": "^7.2.1",
5656
"@bazel/ibazel": "^0.9.0",
57-
"@bazel/karma": "0.22.0",
58-
"@bazel/typescript": "0.22.0",
57+
"@bazel/karma": "0.22.1",
58+
"@bazel/typescript": "0.22.1",
5959
"@firebase/app-types": "^0.3.2",
6060
"@octokit/rest": "^15.9.4",
61-
"@schematics/angular": "^7.1.2",
61+
"@schematics/angular": "^7.2.2",
6262
"@types/browser-sync": "^0.0.42",
6363
"@types/chalk": "^0.4.31",
6464
"@types/fs-extra": "^4.0.3",

0 commit comments

Comments
 (0)