Skip to content

Commit f8ad82a

Browse files
committed
feat: Add info on completion
1 parent 6c567de commit f8ad82a

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
# Quasar Framework: vue-cli-plugin-quasar
44

5-
> :rocket: Start building a Vue app with Quasar Framework in 2 minutes! If you wish to also build Mobile & Electron apps, you should instead try using Quasar CLI.
5+
> :rocket: Start building a Vue app with Quasar Framework in 2 minutes!
6+
7+
> :warning: **For the premium experience with Quasar, including the ability to build Mobile & Electron apps, you should instead try using Quasar CLI.**
68
79
<a href="https://badge.fury.io/js/vue-cli-plugin-quasar" target="_blank"><img src="https://badge.fury.io/js/vue-cli-plugin-quasar.svg"></a>
810
[![Join the chat at https://discord.gg/5TDhbDg](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/5TDhbDg)

generator/index.js

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
const fs = require('fs')
22
const extendPluginOptions = require('../lib/extendPluginOptions')
33

4+
const message = `
5+
Documentation can be found at: http://quasar-framework.org
6+
7+
Quasar is relying on donations to evolve. We'd be very grateful if you can
8+
take a look at: https://www.patreon.com/quasarframework
9+
Any amount is very welcomed.
10+
If invoices are required, please first contact [email protected]
11+
12+
Please give us a star on Github if you appreciate our work:
13+
https://github.com/quasarframework/quasar
14+
15+
Enjoy! - Quasar Team
16+
`
17+
418
module.exports = (api, opts, rootOpts) => {
519
const
620
tsPath = api.resolve('./src/main.ts'),
@@ -170,5 +184,7 @@ module.exports = (api, opts, rootOpts) => {
170184
'lint'
171185
])
172186
}
187+
188+
api.exitLog(message, 'info')
173189
})
174190
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cli-plugin-quasar",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Quasar plugin for vue cli 3",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)