-
Notifications
You must be signed in to change notification settings - Fork 269
/
pkg-externals.bzl
50 lines (46 loc) · 1.52 KB
/
pkg-externals.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Forked from: https://github.com/angular/components/blob/ff67a416d19e9237607605bec0d7cc372025387f/pkg-externals.bzl
# Base list of externals which should not be bundled into the APF package output.
# Note that we want to disable sorting of the externals as we manually group entries.
# buildifier: disable=unsorted-list-items
PKG_EXTERNALS = [
# Framework packages.
"@angular/animations",
"@angular/common",
"@angular/common/http",
"@angular/common/http/testing",
"@angular/common/testing",
"@angular/core",
"@angular/core/testing",
"@angular/forms",
"@angular/platform-browser",
"@angular/platform-browser-dynamic",
"@angular/platform-browser-dynamic/testing",
"@angular/platform-browser/animations",
"@angular/platform-server",
"@angular/router",
# Primary entry-points in the project.
"@angular/cdk",
"@angular/cdk-experimental",
"@angular/google-maps",
"@angular/material",
"@angular/material-experimental",
"@angular/material-moment-adapter",
"@angular/material-luxon-adapter",
"@angular/material-date-fns-adapter",
"@angular/youtube-player",
# Third-party libraries.
"kagekiri",
"moment",
"moment/locale/fr",
"moment/locale/ja",
"luxon",
"date-fns",
"protractor",
"rxjs",
"rxjs/operators",
"selenium-webdriver",
# TODO: Remove slider deep dependencies after we remove depencies on MDC's javascript
"@material/slider/adapter",
"@material/slider/foundation",
"@material/slider/types",
]