-
Notifications
You must be signed in to change notification settings - Fork 11.9k
build: clean up BUILD files and update dependencies #31407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d2b8466
to
10df979
Compare
This commit cleans up various `BUILD.bazel` files by removing unused file globs from `RUNTIME_ASSETS` and test sources. Additionally, the conditional `include_npm` setting in `tests/legacy-cli/e2e.bzl` has been removed.
10df979
to
8a010e1
Compare
node_toolchain = toolchain, | ||
include_npm = select({ | ||
# For Windows testing mode, we use the real global NPM as otherwise this | ||
# will be a lot of files that need to be brought from WSL to the host FS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WSL
is no longer used to compile the files.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean native Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To build we use native Linux and to test we use native Windows. More context: #31038
node_toolchain = toolchain, | ||
include_npm = select({ | ||
# For Windows testing mode, we use the real global NPM as otherwise this | ||
# will be a lot of files that need to be brought from WSL to the host FS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean native Windows?
This commit cleans up various
BUILD.bazel
files by removing empty file globs fromRUNTIME_ASSETS
and test sources.Additionally, the conditional
include_npm
setting intests/legacy-cli/e2e.bzl
has been removed.