Closed grrinch closed 6 years ago
I've installed everything following the README and it seems that the packages installed are outdated.
Here's my output from npm outdated:
npm outdated
Package Current Wanted Latest Location autoprefixer 7.2.6 7.2.6 9.1.5 bulma-start bulma 0.6.2 0.6.2 0.7.1 bulma-start postcss-cli 4.1.1 4.1.1 6.0.0 bulma-start
I tried npm update bulma@latest -save but it broke the SCSS monitoring and compilation.
npm update bulma@latest -save
Not sure how to make it work other than that.
OK, not sure if that's the best approach, but I managed to get it working just by changing the version in package.json like below:
package.json
"devDependencies": { [...] "bulma": "^0.7.0", [...] },
I've installed everything following the README and it seems that the packages installed are outdated.
Here's my output from
npm outdated
:I tried
npm update bulma@latest -save
but it broke the SCSS monitoring and compilation.Not sure how to make it work other than that.