mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Rename the npm2 workspace to npm and use the latest version of devinfra which drops rules_nodejs PR Close #63093
15 lines
437 B
Text
15 lines
437 B
Text
load("@npm//:defs.bzl", "npm_link_all_packages")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
npm_link_all_packages()
|
|
|
|
# Expose the sources in the dev-infra NPM package.
|
|
filegroup(
|
|
name = "files",
|
|
srcs = glob(["*"]) + [
|
|
"//adev/shared-docs/pipeline/api-gen/extraction:files",
|
|
"//adev/shared-docs/pipeline/api-gen/manifest:files",
|
|
"//adev/shared-docs/pipeline/api-gen/rendering:files",
|
|
],
|
|
)
|