-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Quasar Build Provisions: start=> (https://quasar.dev/quasar-cli/installation)
**Make sure you have Node >=8 and NPM >=5 installed on your machine.
$ npm uninstall -g quasar-cli
$ npm install -g @quasar/cli
TIPS -The v1.0+ CLI is compatible with pre v1.0 project folders too, so you DON’T need to worry that your older projects won’t run anymore. -You are not required to have vue cli installed anymore in order to generate a Quasar project folder.
Then we create a project folder with Quasar CLI:
$ quasar create <folder_name>
$ quasar create <folder_name> -b v0.17
NOTE You don’t need separate projects if you want to build any of the options described above. This one project can seamlessly handle all of them.
How it works Quasar CLI is made up of two packages: @quasar/cli and @quasar/app. The first one is optional and only allows you to create a project folder and globally run Quasar commands. The second package is the heart of it and it gets installed into every Quasar project folder.
Once a project folder has been generated, Quasar CLI will only help in running @quasar/app's commands globally. You don’t need it for anything else at this point. To ensure full independence from Quasar CLI you can write npm scripts (in your package.json) to run Quasar commands. It is @quasar/app (which is specific to each project) that will run all the CLI commands.