44 lines
762 B
Python
44 lines
762 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "npm_package", "ts_library")
|
|
|
|
ts_library(
|
|
name = "ng-add",
|
|
srcs = glob(
|
|
[
|
|
"index.ts",
|
|
"schema.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"@rxjs",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = 1,
|
|
srcs = glob(
|
|
[
|
|
"index_spec.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
":ng-add",
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"@rxjs",
|
|
"@rxjs//operators",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
deps = [
|
|
":test_lib",
|
|
"//packages/elements/schematics:collection",
|
|
],
|
|
)
|