max-scopp
2/25/2018 - 9:57 AM

How to finally re-install fkn' node-sass using yarn and not breaking the package structure.md

Re-install without version checks:

yarn add --pure-lockfile node-sass


Install with version checks:

(if your projects requires an older node-sass)

yarn add --frozen-lockfile node-sass

Installation also shouldn't take ages, since the binary is most likely be copied from yarn's Cache.

Thank me later. Docs: https://yarnpkg.com/lang/en/docs/cli/install/