mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a08a8ff108
This removes one line that should effectively bundle the angular fork of domino in via esbuild. PR Close #49229
23 lines
487 B
Python
23 lines
487 B
Python
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",
|
|
],
|
|
)
|