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