Joey Perrott 4afad03312 feat(dev-infra): add ng-dev build-and-link command (#42319)
Add a command to build the release output without stamping for release
and link via `yarn link` the generated builds to a project provided.

PR Close #42319
2021-05-25 22:11:03 +00:00

17 lines
430 B
Python

load("@npm//@bazel/typescript:index.bzl", "ts_library")
ts_library(
name = "misc",
srcs = glob(["**/*.ts"]),
module_name = "@angular/dev-infra-private/misc/",
visibility = ["//dev-infra:__subpackages__"],
deps = [
"//dev-infra/release/build",
"//dev-infra/release/config",
"//dev-infra/utils",
"@npm//@types/node",
"@npm//@types/yargs",
"@npm//chalk",
],
)