mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 02:24:10 +08:00
build: update angular
This commit is contained in:
parent
40a1cb0be8
commit
e4ad8a43c1
2
.github/workflows/dev-infra.yml
vendored
2
.github/workflows/dev-infra.yml
vendored
@ -13,6 +13,6 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
|
||||
- uses: angular/dev-infra/github-actions/commit-message-based-labels@656b11bb3b85ec17adda406269f27954b6daf3dd
|
||||
- uses: angular/dev-infra/github-actions/commit-message-based-labels@a7d07a6f66c05791fdde2dd372da4ba55c1d524b
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
||||
|
2
.github/workflows/lock-closed.yml
vendored
2
.github/workflows/lock-closed.yml
vendored
@ -13,6 +13,6 @@ jobs:
|
||||
lock_closed:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: angular/dev-infra/github-actions/lock-closed@656b11bb3b85ec17adda406269f27954b6daf3dd
|
||||
- uses: angular/dev-infra/github-actions/lock-closed@a7d07a6f66c05791fdde2dd372da4ba55c1d524b
|
||||
with:
|
||||
lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}
|
||||
|
36
package.json
36
package.json
@ -34,23 +34,23 @@
|
||||
"@types/node": "^14.15.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/architect": "0.1400.0-next.9",
|
||||
"@angular-devkit/build-angular": "14.0.0-next.9",
|
||||
"@angular-devkit/core": "14.0.0-next.9",
|
||||
"@angular-devkit/schematics": "14.0.0-next.9",
|
||||
"@angular/animations": "14.0.0-next.13",
|
||||
"@angular/bazel": "14.0.0-next.13",
|
||||
"@angular/cli": "14.0.0-next.9",
|
||||
"@angular/common": "14.0.0-next.13",
|
||||
"@angular/compiler": "14.0.0-next.13",
|
||||
"@angular/compiler-cli": "14.0.0-next.13",
|
||||
"@angular/core": "14.0.0-next.13",
|
||||
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#52ba2da4e57da6c2e9feaf693cac3b104ca8926c",
|
||||
"@angular/platform-browser": "14.0.0-next.13",
|
||||
"@angular/platform-browser-dynamic": "14.0.0-next.13",
|
||||
"@angular/platform-server": "14.0.0-next.13",
|
||||
"@angular/router": "14.0.0-next.13",
|
||||
"@angular/service-worker": "14.0.0-next.13",
|
||||
"@angular-devkit/architect": "0.1400.0-next.12",
|
||||
"@angular-devkit/build-angular": "14.0.0-next.12",
|
||||
"@angular-devkit/core": "14.0.0-next.12",
|
||||
"@angular-devkit/schematics": "14.0.0-next.12",
|
||||
"@angular/animations": "14.0.0-next.15",
|
||||
"@angular/bazel": "14.0.0-next.15",
|
||||
"@angular/cli": "14.0.0-next.12",
|
||||
"@angular/common": "14.0.0-next.15",
|
||||
"@angular/compiler": "14.0.0-next.15",
|
||||
"@angular/compiler-cli": "14.0.0-next.15",
|
||||
"@angular/core": "14.0.0-next.15",
|
||||
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#335aad1b04b3d95cd4cb1d719e73b93d4e90cce3",
|
||||
"@angular/platform-browser": "14.0.0-next.15",
|
||||
"@angular/platform-browser-dynamic": "14.0.0-next.15",
|
||||
"@angular/platform-server": "14.0.0-next.15",
|
||||
"@angular/router": "14.0.0-next.15",
|
||||
"@angular/service-worker": "14.0.0-next.15",
|
||||
"@bazel/bazelisk": "1.11.0",
|
||||
"@bazel/buildifier": "5.1.0",
|
||||
"@bazel/concatjs": "5.4.0",
|
||||
@ -59,7 +59,7 @@
|
||||
"@bazel/jasmine": "5.4.0",
|
||||
"@rollup/plugin-commonjs": "^22.0.0",
|
||||
"@rollup/plugin-node-resolve": "^13.0.5",
|
||||
"@schematics/angular": "14.0.0-next.9",
|
||||
"@schematics/angular": "14.0.0-next.12",
|
||||
"@types/browser-sync": "^2.26.1",
|
||||
"@types/express": "~4.17.6",
|
||||
"@types/fs-extra": "^9.0.0",
|
||||
|
@ -76,7 +76,7 @@ PKG_GROUP_REPLACEMENTS = {
|
||||
"TSLIB_VERSION": TSLIB_VERSION,
|
||||
}
|
||||
|
||||
def ng_module(name, package_name, module_name = None, tsconfig = None, testonly = False, deps = [], bundle_dts = True, **kwargs):
|
||||
def ng_module(name, package_name, module_name = None, tsconfig = None, testonly = False, deps = [], **kwargs):
|
||||
deps = deps + ["@npm//tslib", "@npm//@types/node"]
|
||||
|
||||
if not tsconfig:
|
||||
@ -90,7 +90,6 @@ def ng_module(name, package_name, module_name = None, tsconfig = None, testonly
|
||||
module_name = package_name,
|
||||
package_name = package_name,
|
||||
flat_module_out_file = name,
|
||||
bundle_dts = bundle_dts,
|
||||
tsconfig = tsconfig,
|
||||
testonly = testonly,
|
||||
deps = deps,
|
||||
|
Loading…
x
Reference in New Issue
Block a user