2018-10-04 16:14:14 -04:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2020-10-02 13:50:38 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_config")
|
|
|
|
load("//tools:defaults.bzl", "nodejs_binary")
|
2018-10-04 16:14:14 -04:00
|
|
|
|
2018-12-18 01:09:39 -05:00
|
|
|
exports_files([
|
|
|
|
"tsconfig.json",
|
|
|
|
"jasmine-seed-generator.js",
|
|
|
|
])
|
2018-08-02 00:02:36 -04:00
|
|
|
|
2018-10-04 16:14:14 -04:00
|
|
|
ts_config(
|
|
|
|
name = "tsconfig-test",
|
|
|
|
src = "tsconfig-test.json",
|
|
|
|
deps = ["tsconfig.json"],
|
|
|
|
)
|
|
|
|
|
2020-03-17 07:58:17 -04:00
|
|
|
nodejs_binary(
|
|
|
|
name = "inline-package-json-deps",
|
|
|
|
entry_point = "inline-package-json-deps.js",
|
|
|
|
)
|
|
|
|
|
2018-08-02 00:02:36 -04:00
|
|
|
platform(
|
|
|
|
name = "rbe_ubuntu1604-angular",
|
2019-03-15 13:45:20 -04:00
|
|
|
parents = ["@rbe_ubuntu1604_angular//config:platform"],
|
2018-08-02 00:02:36 -04:00
|
|
|
remote_execution_properties = """
|
2019-03-15 13:45:20 -04:00
|
|
|
{PARENT_REMOTE_EXECUTION_PROPERTIES}
|
2018-08-02 00:02:36 -04:00
|
|
|
properties: {
|
|
|
|
name: "dockerAddCapabilities"
|
|
|
|
value: "SYS_ADMIN"
|
|
|
|
}
|
2020-02-13 16:07:25 -05:00
|
|
|
properties: {
|
|
|
|
name: "dockerNetwork"
|
|
|
|
value: "standard"
|
|
|
|
}
|
2019-06-26 15:13:50 -04:00
|
|
|
properties: {
|
|
|
|
name: "Pool"
|
|
|
|
value: "default"
|
|
|
|
}
|
2018-08-02 00:02:36 -04:00
|
|
|
""",
|
|
|
|
)
|