Skip to content
This repository was archived by the owner on Dec 13, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Display list of commands:
<!--
### Create App

Initializes an App folder with a starter kit boilerplate.
Initializes an App folder with the Quasar App boilerplate.

`$ quasar init [template name] <folder-name>`

Expand Down
10 changes: 5 additions & 5 deletions bin/quasar-init
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ const argv = parseArgs(process.argv.slice(2), {
if (argv.help) {
console.log(`
Description
Create a Quasar App folder from the starter kit.
Create a Quasar App folder from the boilerplate repo.
You need "vue-cli" package installed globally.
Usage
# Install latest starter kit:
# Install latest Quasar App boilerplate:
$ quasar init <folder_name>

# Install starter kit for specific Quasar version.
# Install boilerplate for a specific Quasar version.
# Only specify the major and minor version (no patch version).
# Good example: 0.15, 1.0, 1.2
# Bad example: 0.15.2, 1.0.1, 1.2.2
Expand All @@ -32,7 +32,7 @@ if (argv.help) {

Options
--version, -v Install specific Quasar version
--type, -t Install specific starter kit
--type, -t Install specific boilerplate
--help, -h Displays this message
`)
process.exit(0)
Expand Down Expand Up @@ -60,7 +60,7 @@ if (!argv._[0]) {
const
cliDir = resolve(__dirname, '..')

let template = `quasarframework/quasar-starter-kit${argv.type ? `-${argv.type}` : ''}`
let template = `quasarframework/quasar-boilerplate${argv.type ? `-${argv.type}` : ''}`
if (argv.version) {
template += `#v${argv.version}`
}
Expand Down