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 don't know GO lang but I tried to read the code, and from what I understood is that the value of hasPrebuildInstall will be true if there is a prebuild-install dependency in package.json:
It would be nice if there was an option to somehow pass an array of modules to installUsingPrebuild and the function will try to use their prebuilt binaries regardless of the value of hasPrebuildInstall (regardless of whether they use prebuild-install or no)
The text was updated successfully, but these errors were encountered:
I don't know GO lang but I tried to read the code, and from what I understood is that the value of
hasPrebuildInstall
will be true if there is aprebuild-install
dependency inpackage.json
:app-builder/pkg/node-modules/tree.go
Lines 134 to 141 in a465281
Then if the value
hasPrebuildInstall
is not true, the functioninstallUsingPrebuild
will not try to download the prebuilt binary.app-builder/pkg/node-modules/rebuild.go
Lines 191 to 193 in a465281
It would be nice if there was an option to somehow pass an array of modules to
installUsingPrebuild
and the function will try to use their prebuilt binaries regardless of the value ofhasPrebuildInstall
(regardless of whether they useprebuild-install
or no)The text was updated successfully, but these errors were encountered: