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
I have written a plugin for nodejs and to be able to configure the name of the external repository where all yarn/npm dependencies are being installed added a flag npm_workspace_name which I am setting as follows:
This works fine when running bazel run //:gazelle but if I no run bazel run //:gazelle -- app to just run gazelle in a subdir the flag is being lost and the default value of that flag is being applied which is quite confusing.
Maybe it makes sense to not strip off extra_args when running in a subdir?
The text was updated successfully, but these errors were encountered:
I have written a plugin for nodejs and to be able to configure the name of the external repository where all yarn/npm dependencies are being installed added a flag
npm_workspace_name
which I am setting as follows:This works fine when running
bazel run //:gazelle
but if I no runbazel run //:gazelle -- app
to just run gazelle in a subdir the flag is being lost and the default value of that flag is being applied which is quite confusing.Maybe it makes sense to not strip off
extra_args
when running in a subdir?The text was updated successfully, but these errors were encountered: