Отсутствует привязка /node_modules/node-sass/vendor/darwin-x64-64/binding.node - PullRequest
0 голосов
/ 14 апреля 2020

Что я делаю:

rm package-lock.json
rm -rf node_modules
npm cache clean --force
npm install
npm uninstall -g node-sass
npm install -g node-sass@4.13.1

Похоже, мое веб-приложение ищет привязку darwin-x64-64

, в то время как есть только darwin-x64-57, доступный в соответствии с журнал, но почему?

> node-sass@4.13.1 install /Users/enguyen/AndroidStudioProjects/sundae-android/mobile-webview/node_modules/node-sass
> node scripts/install.js

Cached binary found at /Users/enguyen/.npm/node-sass/4.13.1/darwin-x64-57_binding.node

> core-js@2.6.11 postinstall /Users/enguyen/AndroidStudioProjects/sundae-android/mobile-webview/node_modules/core-js
> node -e "try{require('./postinstall')}catch(e){}"

Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!

The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: 
> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)


> node-sass@4.13.1 postinstall /Users/enguyen/AndroidStudioProjects/sundae-android/mobile-webview/node_modules/node-sass
> node scripts/build.js

Binary found at /Users/enguyen/AndroidStudioProjects/sundae-android/mobile-webview/node_modules/node-sass/vendor/darwin-x64-57/binding.node
Testing binary
Binary is fine
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN webbie@0.0.1 No repository field.
npm WARN webbie@0.0.1 No license field.

added 686 packages from 403 contributors and audited 5418 packages in 20.255s
found 2 low severity vulnerabilities
  run `npm audit fix` to fix them, or `npm audit` for details
removed 172 packages in 1.611s
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
/Users/enguyen/.nvm/versions/node/v8.14.0/bin/node-sass -> /Users/enguyen/.nvm/versions/node/v8.14.0/lib/node_modules/node-sass/bin/node-sass

> node-sass@4.13.1 install /Users/enguyen/.nvm/versions/node/v8.14.0/lib/node_modules/node-sass
> node scripts/install.js

Cached binary found at /Users/enguyen/.npm/node-sass/4.13.1/darwin-x64-57_binding.node

> node-sass@4.13.1 postinstall /Users/enguyen/.nvm/versions/node/v8.14.0/lib/node_modules/node-sass
> node scripts/build.js

Binary found at /Users/enguyen/.nvm/versions/node/v8.14.0/lib/node_modules/node-sass/vendor/darwin-x64-57/binding.node
Testing binary
Binary is fine
+ node-sass@4.13.1

Что мне нужно сделать?

...