/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material-experimental/config.bzl
35 строк
1 KB
Miles Malerba
fix(material/core): Move remaining MDC core functionality out of experimental (#25503)
22 авг 2022, 22:29
Не верифицирован
22 авг 2022, 22:29
fd5afe7
Код
Авторство
О чём код?
entryPoints = [ "column-resize", "menubar", "popover-edit", "selection", ] # List of all non-testing entry-points of the Angular material-experimental package. MATERIAL_EXPERIMENTAL_ENTRYPOINTS = [ ep for ep in entryPoints if not "/testing" in ep ] # List of all testing entry-points of the Angular material-experimental package. MATERIAL_EXPERIMENTAL_TESTING_ENTRYPOINTS = [ ep for ep in entryPoints if not ep in MATERIAL_EXPERIMENTAL_ENTRYPOINTS ] # List of all non-testing entry-point targets of the Angular material-experimental package. MATERIAL_EXPERIMENTAL_TARGETS = ["//src/material-experimental"] + \ ["//src/material-experimental/%s" % ep for ep in MATERIAL_EXPERIMENTAL_ENTRYPOINTS] # List of all testing entry-point targets of the Angular material-experimental package. MATERIAL_EXPERIMENTAL_TESTING_TARGETS = ["//src/material-experimental/%s" % ep for ep in MATERIAL_EXPERIMENTAL_TESTING_ENTRYPOINTS] MATERIAL_EXPERIMENTAL_SCSS_LIBS = [ "//src/material-experimental/%s:%s_scss_lib" % (ep, ep.replace("-", "_")) # Only secondary entry-points declare theme files currently. Entry-points # which contain a slash are not in the top-level. for ep in MATERIAL_EXPERIMENTAL_ENTRYPOINTS if not "/" in ep ]