2019-01-16 04:19:01 -05:00
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2018-03-13 14:00:53 -04:00
|
|
|
exports_files(["package.json"])
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2018-03-13 14:00:53 -04:00
|
|
|
ng_module(
|
2017-12-06 09:56:49 -05:00
|
|
|
name = "testing",
|
2018-03-13 14:00:53 -04:00
|
|
|
srcs = glob(
|
|
|
|
["**/*.ts"],
|
|
|
|
exclude = ["testing.ts"],
|
|
|
|
),
|
2019-03-06 03:28:41 -05:00
|
|
|
# compiler package is built using ts_library which doesn't support bundling yet.
|
|
|
|
bundle_dts = False,
|
2017-12-16 14:35:47 -05:00
|
|
|
deps = [
|
|
|
|
"//packages:types",
|
|
|
|
"//packages/compiler",
|
2018-03-13 14:00:53 -04:00
|
|
|
"//packages/core",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//@types/node",
|
2017-12-16 14:35:47 -05:00
|
|
|
],
|
2017-12-06 09:56:49 -05:00
|
|
|
)
|