jgthms / bulma-start

Start package for Bulma
https://www.npmjs.com/package/bulma-start
MIT License
276 stars 82 forks source link

Current install pulls outdated Bulma #10

Closed grrinch closed 5 years ago

grrinch commented 5 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:

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.

Not sure how to make it work other than that.

grrinch commented 5 years ago

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:

"devDependencies": {
[...]
    "bulma": "^0.7.0",
[...]
  },