You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BUILD
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,23 @@ exports_files([
15
15
# @external_begin
16
16
filegroup(
17
17
name="node_modules",
18
-
srcs=glob(["node_modules/**/*"]),
18
+
srcs=glob(
19
+
# Only include files we might use, to reduce the file count and surface size of
20
+
# filename problems.
21
+
[
22
+
"node_modules/**/*.js",
23
+
"node_modules/**/*.json",
24
+
"node_modules/**/*.d.ts",
25
+
],
26
+
exclude= [
27
+
# e.g. node_modules/adm-zip/test/assets/attributes_test/New folder/hidden.txt
28
+
"node_modules/**/test/**",
29
+
# e.g. node_modules/xpath/docs/function resolvers.md
30
+
"node_modules/**/docs/**",
31
+
# e.g. node_modules/puppeteer/.local-chromium/mac-536395/chrome-mac/Chromium.app/Contents/Versions/66.0.3347.0/Chromium Framework.framework/Chromium Framework
0 commit comments