angular/packages/private/testing/BUILD.bazel
Jessica Janiuk a08a8ff108 fix(platform-server): bundle @angular/domino in via esbuild (#49229)
This removes one line that should effectively bundle the
angular fork of domino in via esbuild.

PR Close #49229
2023-02-28 13:34:50 -08:00

22 lines
487 B
Text

load("//tools:defaults.bzl", "ng_module")
package(default_visibility = [
"//modules/playground:__subpackages__",
"//packages:__subpackages__",
])
exports_files(["package.json"])
ng_module(
name = "testing",
package_name = "@angular/private/testing",
testonly = True,
srcs = glob(
["**/*.ts"],
),
module_name = "@angular/private/testing",
deps = [
"//packages/core",
"//packages/platform-server:bundled_domino_lib",
],
)