Downgrade v0.15 to v0.14
-
I really want to try the latest version of quasar but I’m afraid that I won’t be able to downgrade to v0.14 if I want to.
Is there a way do to so ?
I tried : npm install -g quasar-cli@^0.14 but that doesn’t work :
- npm ERR! notarget No matching version found for quasar-cli@^0.14
Thanks in advance
-
Hi thomas. As these are major versions, there are breaking changes between them. You cannot simply upgrade or downgrade between them, rather you must migrate as there are several breaking changes.
There is no good reason to go with 0.14 now, as 0.15 is out. Also 0.15 features seamless upgrade to future quasar versions
-
This post is deleted! -
Hi Thomas, don’t worry if your quasar version is 0.15, you also can run your previous apps build with 0.14, just simply replace the “quasar” with “npm run”, ex:
quasar dev ------> npm run dev
quasar build ------> npm run build.hope it will help you.
-
@tunathoni That definitely helps me, thank you!
-
@benoitranque I asked because I already have an app running with v0.14 and, until I get to the latest version, I wanted to be sure I could run my app with v0.14 at any moment if I wanted to.
Thanks for your reply ! -
Hi, the npm run build command is not copying the changes to cordova www folder any work around? I am not sure what’s wrong.
-
I have the latest cli installed but with older version app npm run build is not copying the changes to cordova www folder. Any workaround?
-
@cssjockey are you looking for this?
-
Downgrade CLI:
npm uninstall -g quasar-cli; npm install -g quasar-cli@0.6.5
. You can always do this. Don’t worry about not being able to downgrade later on the road.