Answers for "yarn install node-sass command failed"

4

Failed at the [email protected] postinstall script.

rm -rf package-lock.json node_modules
npm cache clean --force
npm i --unsafe-perm node-sass
Posted by: Guest on June-07-2020
3

error /node_modules/node-sass: Command failed

// for yarn
yarn remove node-sass
yarn add sass
// for npm
npm uninstall node-sass
npm i sass
Posted by: Guest on November-01-2021
1

npm ERR! [email protected] postinstall: `node scripts/build.js`

sudo rm -rf package-lock.json node_modules
sudo npm cache clean --force
sudo npm i --unsafe-perm node-sass
Posted by: Guest on October-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language