mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
c4dcfdf644
Rename the npm2 workspace to npm and use the latest version of devinfra which drops rules_nodejs PR Close #63093
16 lines
437 B
Python
16 lines
437 B
Python
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",
|
|
],
|
|
)
|