Skip to content

Commit 596a6a0

Browse files
committed
build: update to bazel version 8
Update to bazel 8
1 parent e4fa5f3 commit 596a6a0

File tree

10 files changed

+254
-423
lines changed

10 files changed

+254
-423
lines changed

.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ test --incompatible_strict_action_env
5353
build --experimental_remote_merkle_tree_cache
5454

5555
# Ensure that tags applied in BUILDs propagate to actions
56-
common --experimental_allow_tags_propagation
56+
common --incompatible_allow_tags_propagation
5757

5858
# Ensure sandboxing is enabled even for exclusive tests
5959
test --incompatible_exclusive_test_sandboxed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.6.1
1+
8.4.2

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ git_override(
5353
bazel_dep(name = "rules_browsers")
5454
git_override(
5555
module_name = "rules_browsers",
56-
commit = "6749ba4c0dc5e04536369fa91fdb2d827b6705ff",
56+
commit = "21c730ba697727bfa361e88f2e51de4a3f6e6189",
5757
remote = "https://github.com/devversion/rules_browsers.git",
5858
)
5959

@@ -185,7 +185,7 @@ rules_angular.setup(
185185
angular_compiler_cli = "//:node_modules/@angular/compiler-cli",
186186
typescript = "//:node_modules/typescript",
187187
)
188-
use_repo(rules_angular, **{"rules_angular_configurable_deps": "components_rules_angular_configurable_deps"})
188+
use_repo(rules_angular, rules_angular_configurable_deps = "dev_infra_rules_angular_configurable_deps")
189189

190190
register_toolchains(
191191
"@devinfra//bazel/git-toolchain:git_linux_toolchain",

MODULE.bazel.lock

Lines changed: 249 additions & 404 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/angular/build/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ RUNTIME_ASSETS = glob(
4848
include = [
4949
"src/**/schema.json",
5050
"src/**/*.js",
51-
"src/**/*.mjs",
52-
"src/**/*.html",
5351
],
5452
) + [
5553
"builders.json",

packages/angular/create/BUILD.bazel

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ load("//tools:defaults.bzl", "npm_package", "ts_project")
77

88
licenses(["notice"])
99

10-
RUNTIME_ASSETS = glob(
11-
include = [
12-
"src/*.js",
13-
"src/*.mjs",
14-
],
15-
) + [
10+
RUNTIME_ASSETS = [
1611
"package.json",
1712
]
1813

packages/angular/pwa/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ npm_link_all_packages()
1515

1616
RUNTIME_ASSETS = glob(
1717
include = [
18-
"pwa/*.js",
19-
"pwa/*.mjs",
2018
"pwa/files/**/*",
2119
],
2220
) + [

packages/angular_devkit/schematics/tools/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ ts_project(
1414
include = ["**/*.ts"],
1515
exclude = [
1616
"**/*_spec.ts",
17-
"test/**/*.ts",
1817
],
1918
),
2019
data = ["package.json"],
@@ -35,7 +34,6 @@ ts_project(
3534
srcs = glob(
3635
include = [
3736
"**/*_spec.ts",
38-
"test/**/*.ts",
3937
],
4038
),
4139
deps = [

packages/ngtools/webpack/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ ts_project(
2121
],
2222
exclude = [
2323
"src/**/*_spec.ts",
24-
"src/**/*_spec_helpers.ts",
2524
],
2625
) + [
2726
"index.ts",
@@ -43,7 +42,6 @@ ts_project(
4342
srcs = glob(
4443
include = [
4544
"src/**/*_spec.ts",
46-
"src/**/*_spec_helpers.ts",
4745
],
4846
),
4947
deps = [

packages/schematics/angular/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ RUNTIME_ASSETS = [
5151
include = [
5252
"*/schema.json",
5353
"*/files/**/*",
54-
"*/other-files/**/*",
5554
"*/implements-files/**/*",
5655
"*/type-files/**/*",
5756
"*/functional-files/**/*",

0 commit comments

Comments
 (0)