/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/ng-devtools/src/lib/shared/button/BUILD.bazel
39 строк
859 B
Matthieu Riegler
refactor(devtools): use `whenStable` instead of `detectChanges`
05 янв 2026, 20:24
05 янв 2026, 20:24
6a94300
Код
Авторство
О чём код?
load("//devtools/tools:defaults.bzl", "ng_project", "sass_binary", "ts_test_library", "zoneless_web_test_suite") package(default_visibility = ["//devtools:__subpackages__"]) sass_binary( name = "button_component_styles", src = "button.component.scss", deps = [ "//devtools/projects/ng-devtools/src/styles:typography", ], ) ng_project( name = "button", srcs = ["button.component.ts"], angular_assets = [ ":button_component_styles", ], deps = [ "//:node_modules/@angular/core", ], ) ts_test_library( name = "button_test", srcs = ["button.component.spec.ts"], deps = [ ":button", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", ], ) zoneless_web_test_suite( name = "test", deps = [ ":button_test", ], )