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
external/build_bazel_rules_nodejs/internal/node/node.bzl:86:45: invalid escape sequence: \/. You can enable unknown escape sequences by passing the flag --incompatible_restrict_string_escapes=false
Hmm, it reads escaped = mn.replace("/", "\/").replace(".", "\.")
I guess this means the line is currently a no-op because the backslashes are treated as escape characters. So it should either be replace("/", "\\/") to restore the developers intent or just remove the line to preserve current semantics.
Affected Rule
/build_bazel_rules_nodejs/internal/node/node.bzl
Is this a regression?
No. Compatibility with latest Bazel version.
Description
I'm seeing the following errors
Minimal Reproduction
Exception or Error
See above
Your Environment
See above
The text was updated successfully, but these errors were encountered: