/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/cdk/config.bzl
49 строк
1 KB
Paul Gschwendtner
Revert "build: migrate all cross-package targets to use first-party links"
04 апр 2025, 14:47
04 апр 2025, 14:47
29a9ee6
Код
Авторство
О чём код?
# List of all entry-points of the Angular CDK package. CDK_ENTRYPOINTS = [ "a11y", "accordion", "bidi", "clipboard", "coercion", "coercion/private", "collections", "dialog", "drag-drop", "keycodes", "layout", "listbox", "menu", "observers", "observers/private", "overlay", "platform", "portal", "scrolling", "stepper", "table", "text-field", "tree", "testing", "testing/testbed", "testing/selenium-webdriver", "private", ] # List of all entry-point targets of the Angular Material package. CDK_TARGETS = ["//src/cdk"] + ["//src/cdk/%s" % ep for ep in CDK_ENTRYPOINTS] # Within the CDK, only a few targets have sass libraries which need to be # part of the release package. This list declares all CDK targets with sass # libraries that need to be included and re-exported at the package root. # **Note**: When updating the list of CDK entry-points with styles, also update # the `exports` field in the `cdk/package.json` file. CDK_ENTRYPOINTS_WITH_STYLES = [ "a11y", "overlay", "text-field", ] CDK_SCSS_LIBS = [ "//src/cdk/%s:%s_scss_lib" % (p, p.replace("-", "_")) for p in CDK_ENTRYPOINTS_WITH_STYLES ]