The major one that affects the angular repo is the removal of the bootstrap attribute in nodejs_binary, nodejs_test and jasmine_node_test in favor of using templated_args --node_options=--require=/path/to/script. The side-effect of this is that the bootstrap script does not get the require.resolve patches with explicitly loading the targets _loader.js file. PR Close #34736
34 lines
805 B
Python
34 lines
805 B
Python
load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
|
|
|
|
ts_library(
|
|
name = "selector_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/common",
|
|
"//packages/compiler",
|
|
"//packages/compiler/testing",
|
|
"//packages/core/testing",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser/testing",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "selector",
|
|
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
|
|
deps = [
|
|
":selector_lib",
|
|
"//tools/testing:node",
|
|
"//tools/testing:node_es5",
|
|
],
|
|
)
|
|
|
|
karma_web_test_suite(
|
|
name = "selector_web",
|
|
deps = [
|
|
":selector_lib",
|
|
],
|
|
)
|