nuxt-community / starter-template

DEPRECATED: use create-nuxt-app instead
https://github.com/nuxt-community/create-nuxt-app
MIT License
607 stars 330 forks source link

should this be updated to include a newer version of Nuxt? #57

Closed dimitrieh closed 6 years ago

dimitrieh commented 6 years ago

https://github.com/nuxt-community/starter-template/blob/308ca01d6520629dab11316b9717a68fd106c844/template/package.json#L16

This question is available on Nuxt.js community (#c35)
NicoPennec commented 6 years ago

It's not necessary with the caret ranges (^ notation) npm will install the lastest version

^1.0.0 is equal to >= 1.0.0 < 2.0.0

dimitrieh commented 6 years ago

@NicoPennec great, thanks for that bit of information!