mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2b0f3fc7cb
Remove usages of @bazel/runfiles throughout the repository PR Close #62805
17 lines
469 B
Python
17 lines
469 B
Python
load("//modules/playground/e2e_test:example_test.bzl", "example_test")
|
|
|
|
example_test(
|
|
name = "sourcemap",
|
|
srcs = glob(["**/*.ts"]),
|
|
data = [
|
|
"//modules/playground/src/sourcemap:assets",
|
|
],
|
|
# Source-Map is using WASM and cannot be bundled for specs.
|
|
external = ["source-map"],
|
|
server = "//modules/playground/src/sourcemap:devserver",
|
|
use_legacy_webdriver_types = False,
|
|
deps = [
|
|
"//:node_modules/source-map",
|
|
],
|
|
)
|