yarn
yarn copied to clipboard
Yarn can't specifying the parameter --arch?
Do you want to request a feature or report a bug?
Bug
yarn version
1.22.5
platform
windows
issue
I want install the 32-bit electron version by specifying the parameter --acrh=ia32 under the 64-bit windows system:
$ yarn add electron --arch=ia32 --dev
But it doesn't seem to work。
As a comparison, I can successfully install using Npm:
$ npm install electron --arch=ia32 --dev
Like yarn ignores the arch parameter? Maybe a bug? How to fix it?
When I do the following configuration in .npmrc
file:
arch=ia32
then run:
$ yarn add electron --dev
Yarn will merge the configuration of npm and install 32-bit electron.
Why do the parameters through the command line(--arch=ia32
) not take effect?
same problem +1