bbce2ad7d4
* This brings in a fix to the `@npm//foo:foo_files` targets for https://github.com/angular/angular/pull/33927 so the a rules_nodejs patch can be removed. * It also brings a protractor_web_test fix that resolves the need for a work-around in /modules/playground/e2e_test/sourcemap/BUILD.bazel. PR Close #34073
12 lines
324 B
Python
12 lines
324 B
Python
load("//modules/playground/e2e_test:example_test.bzl", "example_test")
|
|
|
|
example_test(
|
|
name = "sourcemap",
|
|
srcs = glob(["**/*.ts"]),
|
|
data = [
|
|
"//modules/playground/src/sourcemap",
|
|
"//modules/playground/src/sourcemap:index.ts",
|
|
],
|
|
server = "//modules/playground/src/sourcemap:devserver",
|
|
)
|