Describe the bugyarn run setup fails because https://github.com/sass/node-sass/releases/download/v4.9.4/linux-x64-72_binding.node doesn't exist (under assets) and the subsequent build to replace it fails.
To Reproduce
Steps to reproduce the behavior:
Use 64bit Linux
nvm use 12
yarn run setup
Fails on install(docs) because docs has the following dependencies on node-sass:
Which resolve to the install of node-sass@4.9.4 a version that does NOT have a node v12 binary download, i.e. the 72 in linux-x64-72
To Fixnvm use 10
This changes the node-sass download to https://github.com/sass/node-sass/releases/download/v4.9.4/linux-x64-64_binding.node which does exist.
Describe the bug
yarn run setup
fails becausehttps://github.com/sass/node-sass/releases/download/v4.9.4/linux-x64-72_binding.node
doesn't exist (under assets) and the subsequent build to replace it fails.To Reproduce Steps to reproduce the behavior:
nvm use 12
yarn run setup
Fails on
install(docs)
becausedocs
has the following dependencies onnode-sass
:Which resolve to the install of
node-sass@4.9.4
a version that does NOT have a node v12 binary download, i.e. the72
inlinux-x64-72
To Fix
nvm use 10
This changes the node-sass download tohttps://github.com/sass/node-sass/releases/download/v4.9.4/linux-x64-64_binding.node
which does exist.