/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components-examples/material/datepicker/BUILD.bazel
66 строк
2 KB
Kristiyan Kostadinov
docs: switch datepicker examples to Luxon (#32008)
08 окт 2025, 18:23
Не верифицирован
08 окт 2025, 18:23
f6e8a02
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite") package(default_visibility = ["//visibility:public"]) ng_project( name = "datepicker", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), assets = glob([ "**/*.html", "**/*.css", ]), deps = [ "//:node_modules/@angular/common", "//:node_modules/@angular/core", "//:node_modules/@angular/forms", "//:node_modules/@angular/platform-browser", "//:node_modules/@types/jasmine", "//:node_modules/luxon", "//:node_modules/rxjs", "//src/cdk/testing", "//src/cdk/testing/testbed", "//src/material-luxon-adapter", "//src/material/button", "//src/material/card", "//src/material/core", "//src/material/datepicker", "//src/material/datepicker/testing", "//src/material/dialog", "//src/material/icon", "//src/material/input", ], ) filegroup( name = "source-files", srcs = glob([ "**/*.html", "**/*.css", "**/*.ts", ]), ) ng_project( name = "unit_tests_lib", testonly = True, srcs = glob(["**/*.spec.ts"]), deps = [ ":datepicker", "//:node_modules/@angular/core", "//:node_modules/@angular/forms", "//:node_modules/@angular/platform-browser", "//src/cdk/testing", "//src/cdk/testing/testbed", "//src/material/core", "//src/material/datepicker", "//src/material/datepicker/testing", ], ) ng_web_test_suite( name = "unit_tests", deps = [":unit_tests_lib"], )