/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/dev-app/tree/BUILD.bazel
33 строки
836 B
Joey Perrott
build: merge the default.bzl and default2.bzl files (#30953)
24 апр 2025, 23:55
Не верифицирован
24 апр 2025, 23:55
e500a8e
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ng_project", "sass_binary") package(default_visibility = ["//visibility:public"]) ng_project( name = "tree", srcs = glob(["**/*.ts"]), assets = glob([ "**/*.html", ]) + [ ":tree_demo_scss", ], deps = [ "//:node_modules/@angular/core", "//:node_modules/@angular/forms", "//src/cdk/tree", "//src/components-examples/cdk/tree", "//src/components-examples/material/tree", "//src/material/button", "//src/material/checkbox", "//src/material/expansion", "//src/material/form-field", "//src/material/icon", "//src/material/input", "//src/material/progress-bar", "//src/material/tree", ], ) sass_binary( name = "tree_demo_scss", src = "tree-demo.scss", )