Skip to content

Commit e4ad8a4

Browse files
renovate-botalan-agius4
authored andcommitted
build: update angular
1 parent 40a1cb0 commit e4ad8a4

File tree

5 files changed

+322
-535
lines changed

5 files changed

+322
-535
lines changed

.github/workflows/dev-infra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
16-
- uses: angular/dev-infra/github-actions/commit-message-based-labels@656b11bb3b85ec17adda406269f27954b6daf3dd
16+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@a7d07a6f66c05791fdde2dd372da4ba55c1d524b
1717
with:
1818
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/lock-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
lock_closed:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: angular/dev-infra/github-actions/lock-closed@656b11bb3b85ec17adda406269f27954b6daf3dd
16+
- uses: angular/dev-infra/github-actions/lock-closed@a7d07a6f66c05791fdde2dd372da4ba55c1d524b
1717
with:
1818
lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@
3434
"@types/node": "^14.15.0"
3535
},
3636
"devDependencies": {
37-
"@angular-devkit/architect": "0.1400.0-next.9",
38-
"@angular-devkit/build-angular": "14.0.0-next.9",
39-
"@angular-devkit/core": "14.0.0-next.9",
40-
"@angular-devkit/schematics": "14.0.0-next.9",
41-
"@angular/animations": "14.0.0-next.13",
42-
"@angular/bazel": "14.0.0-next.13",
43-
"@angular/cli": "14.0.0-next.9",
44-
"@angular/common": "14.0.0-next.13",
45-
"@angular/compiler": "14.0.0-next.13",
46-
"@angular/compiler-cli": "14.0.0-next.13",
47-
"@angular/core": "14.0.0-next.13",
48-
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#52ba2da4e57da6c2e9feaf693cac3b104ca8926c",
49-
"@angular/platform-browser": "14.0.0-next.13",
50-
"@angular/platform-browser-dynamic": "14.0.0-next.13",
51-
"@angular/platform-server": "14.0.0-next.13",
52-
"@angular/router": "14.0.0-next.13",
53-
"@angular/service-worker": "14.0.0-next.13",
37+
"@angular-devkit/architect": "0.1400.0-next.12",
38+
"@angular-devkit/build-angular": "14.0.0-next.12",
39+
"@angular-devkit/core": "14.0.0-next.12",
40+
"@angular-devkit/schematics": "14.0.0-next.12",
41+
"@angular/animations": "14.0.0-next.15",
42+
"@angular/bazel": "14.0.0-next.15",
43+
"@angular/cli": "14.0.0-next.12",
44+
"@angular/common": "14.0.0-next.15",
45+
"@angular/compiler": "14.0.0-next.15",
46+
"@angular/compiler-cli": "14.0.0-next.15",
47+
"@angular/core": "14.0.0-next.15",
48+
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#335aad1b04b3d95cd4cb1d719e73b93d4e90cce3",
49+
"@angular/platform-browser": "14.0.0-next.15",
50+
"@angular/platform-browser-dynamic": "14.0.0-next.15",
51+
"@angular/platform-server": "14.0.0-next.15",
52+
"@angular/router": "14.0.0-next.15",
53+
"@angular/service-worker": "14.0.0-next.15",
5454
"@bazel/bazelisk": "1.11.0",
5555
"@bazel/buildifier": "5.1.0",
5656
"@bazel/concatjs": "5.4.0",
@@ -59,7 +59,7 @@
5959
"@bazel/jasmine": "5.4.0",
6060
"@rollup/plugin-commonjs": "^22.0.0",
6161
"@rollup/plugin-node-resolve": "^13.0.5",
62-
"@schematics/angular": "14.0.0-next.9",
62+
"@schematics/angular": "14.0.0-next.12",
6363
"@types/browser-sync": "^2.26.1",
6464
"@types/express": "~4.17.6",
6565
"@types/fs-extra": "^9.0.0",

tools/defaults.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ PKG_GROUP_REPLACEMENTS = {
7676
"TSLIB_VERSION": TSLIB_VERSION,
7777
}
7878

79-
def ng_module(name, package_name, module_name = None, tsconfig = None, testonly = False, deps = [], bundle_dts = True, **kwargs):
79+
def ng_module(name, package_name, module_name = None, tsconfig = None, testonly = False, deps = [], **kwargs):
8080
deps = deps + ["@npm//tslib", "@npm//@types/node"]
8181

8282
if not tsconfig:
@@ -90,7 +90,6 @@ def ng_module(name, package_name, module_name = None, tsconfig = None, testonly
9090
module_name = package_name,
9191
package_name = package_name,
9292
flat_module_out_file = name,
93-
bundle_dts = bundle_dts,
9493
tsconfig = tsconfig,
9594
testonly = testonly,
9695
deps = deps,

0 commit comments

Comments
 (0)