nodeのバージョンを上げたらエラーが起こってビルドがコケていたので備忘録。
ターミナルのエラー文見ると下記が表示されていた。
Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 12.x
node-sass
が何やら大切な物を見つけられないでいるみたいです。
This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass` to download the binding for your current environment.
続けてエラー文を見ていきます。
すると、環境が変わった時に起こる現象らしく、npm rebuild node-sass
コマンドを打て、と言われています。
npm run rebuild
解決!