Update quasar 0.15 without reinstall
-
Hi,
i’m wondering about update quasar 0.15 without reinstall everything.Thanks in advance.
-
Nope not possible. You must start a new project and migrate, preferably file per file. The project structure is vastly diferent
-
oh, maybe i didn’t explain it as good as i want: i have quasar 0.15 already installated with all my projects. I just asking if is possible update it (considering that are developing it right now) so i can have it updated every day
-
It seems to be a job to
npm update --global quasar-cli
. -
In that case you must run two commands and those keep everything updated
global instance
in any folder run
npm update -g quasar-cli
local instance
in project folder run
npm update quasar-cli
-
Thanks guys!