-
Notifications
You must be signed in to change notification settings - Fork 7
Upgrading a Solidus site
Timothy Kempf edited this page Mar 11, 2014
·
2 revisions
In order to use the latest features and bugfixes in your Solidus site, you'll occasionally need to update the version of Solidus your site is using. The best way to do this is to specify the latest version number in your package.json
and run npm install
:
Upgrade to 0.1.6
:
"dependencies": {
"solidus": "~0.0.4"
},
to
"dependencies": {
"solidus": "~0.1.6"
},
Then just run npm install
and you should have the latest version of Solidus!