angular/devtools/projects/ng-devtools/BUILD.bazel
Matthieu Riegler ef38017418 build: move devtools only deps out of the workspace
This reduces the clutering of the workspace package.
2026-04-28 13:05:33 -07:00

25 lines
787 B
Text

load("//devtools/tools:defaults.bzl", "ng_project")
package(default_visibility = ["//visibility:public"])
exports_files(["tsconfig.lib.json"])
ng_project(
name = "ng-devtools",
srcs = ["index.ts"],
deps = [
"//:node_modules/@angular/animations",
"//:node_modules/@angular/cdk",
"//:node_modules/@angular/common",
"//:node_modules/@angular/core",
"//:node_modules/@angular/forms",
"//:node_modules/@angular/material",
"//:node_modules/rxjs",
"//devtools:node_modules/@types/d3",
"//devtools:node_modules/d3",
"//devtools:node_modules/ngx-flamegraph",
"//devtools:node_modules/webtreemap",
"//devtools/projects/ng-devtools/src",
"//devtools/projects/protocol",
],
)