mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
build: update to bazel version 8.4.2
Update bazel to use version 8.4.2
This commit is contained in:
committed by
Alex Rickabaugh
parent
22eda59a31
commit
aa92f19307
@@ -146,7 +146,7 @@ build:trusted-build --remote_upload_local_results=true
|
||||
# Ensure that tags like "no-remote-exec" get propagated to actions created by rules,
|
||||
# even if the rule implementation does not explicitly pass them to the execution requirements.
|
||||
# https://bazel.build/reference/command-line-reference#flag--experimental_allow_tags_propagation
|
||||
common --experimental_allow_tags_propagation
|
||||
common --incompatible_allow_tags_propagation
|
||||
|
||||
# Disable network access in the sandbox by default. To enable network access
|
||||
# for a particular target, use:
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
7.7.1
|
||||
8.4.2
|
||||
|
||||
Generated
+478
-688
File diff suppressed because it is too large
Load Diff
@@ -20,11 +20,7 @@ zoneless_jasmine_test(
|
||||
data = [
|
||||
":unit_test_lib",
|
||||
"@rules_browsers//browsers/chromium",
|
||||
] + glob([
|
||||
"**/*.md",
|
||||
"**/*.svg",
|
||||
"**/*.mts",
|
||||
]),
|
||||
],
|
||||
env = {
|
||||
"CHROME_HEADLESS_BIN": "$(CHROME-HEADLESS-SHELL)",
|
||||
},
|
||||
|
||||
@@ -6,7 +6,6 @@ filegroup(
|
||||
name = "context",
|
||||
srcs = glob([
|
||||
"**/*.md",
|
||||
"**/*.txt",
|
||||
"**/*.mdc",
|
||||
]),
|
||||
visibility = ["//visibility:public"],
|
||||
|
||||
@@ -3,9 +3,7 @@ package(default_visibility = ["//:__subpackages__"])
|
||||
filegroup(
|
||||
name = "assets",
|
||||
srcs = glob([
|
||||
"*.svg",
|
||||
"**/*.png",
|
||||
"*.css",
|
||||
"*.png",
|
||||
]) + [
|
||||
"//third_party/fonts.google.com/material-symbols-outlined",
|
||||
],
|
||||
|
||||
@@ -13,7 +13,7 @@ def partial_compliance_golden(filePath):
|
||||
"//packages/core:npm_package",
|
||||
"//packages:package_json",
|
||||
filePath,
|
||||
] + native.glob(["%s/*.ts" % path, "%s/**/*.html" % path, "%s/**/*.css" % path])
|
||||
] + native.glob(["%s/*.ts" % path, "%s/**/*.html" % path, "%s/**/*.css" % path], allow_empty = True)
|
||||
|
||||
js_binary(
|
||||
name = generate_partial_name,
|
||||
|
||||
@@ -36,7 +36,7 @@ ts_project(
|
||||
|
||||
jasmine_test(
|
||||
name = "test",
|
||||
data = glob(["symbol_extractor_spec/**"]) + [
|
||||
data = [
|
||||
":test_lib",
|
||||
"//tools/symbol-extractor/symbol_extractor_spec:es2015_class_output",
|
||||
"//tools/symbol-extractor/symbol_extractor_spec:fixtures",
|
||||
|
||||
Reference in New Issue
Block a user