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
This commit updates the BUILD files to specify fine-grained node_module deps
by replacing "@typings" comments with actual @npm node module.
Moved tools/bazel.rc -> .bazelrc
Removed "jasmine" typings from base tsconfig.json
Added @bazel/karma to devDependencies, needed for `ts_web_test`
Copy file name to clipboardExpand all lines: BUILD
+1-67Lines changed: 1 addition & 67 deletions
Original file line number
Diff line number
Diff line change
@@ -9,72 +9,6 @@ licenses(["notice"]) # MIT License
9
9
exports_files([
10
10
"LICENSE",
11
11
"tsconfig.json", # @external
12
+
"tsconfig-test.json", # @external
12
13
"tslint.base.json", # @external
13
14
])
14
-
15
-
# NOTE: this will move to node_modules/BUILD in a later release
16
-
# @external_begin
17
-
NODE_MODULES_EXCLUDE= [
18
-
# e.g. node_modules/adm-zip/test/assets/attributes_test/New folder/hidden.txt
19
-
"node_modules/**/test/**",
20
-
# e.g. node_modules/xpath/docs/function resolvers.md
21
-
"node_modules/**/docs/**",
22
-
# e.g. node_modules/puppeteer/.local-chromium/mac-536395/chrome-mac/Chromium.app/Contents/Versions/66.0.3347.0/Chromium Framework.framework/Chromium Framework
23
-
"node_modules/**/.*/**",
24
-
# Ignore paths with spaces.
25
-
"node_modules/**/* *",
26
-
]
27
-
28
-
filegroup(
29
-
name="node_modules",
30
-
srcs=glob(
31
-
# Only include files we might use, to reduce the file count and surface size of
32
-
# filename problems.
33
-
[
34
-
"node_modules/**/*.js",
35
-
"node_modules/**/*.json",
36
-
"node_modules/**/*.d.ts",
37
-
],
38
-
exclude=NODE_MODULES_EXCLUDE,
39
-
) +glob(["node_modules/.bin/*"]),
40
-
)
41
-
42
-
# node_modules filegroup for tools/quicktype_runner, which contains quicktype-core and tslint.
0 commit comments