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
Some npm packages have malformed tarballs (missing the +x file attr bit on directories) which don't play nicely with Bazel when they are extracted by the rules_js NpmPackageExtract action. See #1637 for more details.
The work-around for these npm packages is to add custom_postinstall scripts for each with chmod -R a+X * or chmod -R a+X * && <other custom postinstall steps> to the npm_translate_lock repository rule / bzlmod extension.
This issue is here for users to share all of the package that this problem has been observed on where this work-around may be needed.
The text was updated successfully, but these errors were encountered:
Some npm packages have malformed tarballs (missing the +x file attr bit on directories) which don't play nicely with Bazel when they are extracted by the rules_js
NpmPackageExtract
action. See #1637 for more details.An example error from this issue:
The work-around for these npm packages is to add
custom_postinstall
scripts for each withchmod -R a+X *
orchmod -R a+X * && <other custom postinstall steps>
to thenpm_translate_lock
repository rule / bzlmod extension.This issue is here for users to share all of the package that this problem has been observed on where this work-around may be needed.
The text was updated successfully, but these errors were encountered: