create-quasar 1.0.9 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1 +1,53 @@
1
- ## WORK IN PROGRESS
1
+ ![Quasar Framework logo](https://cdn.quasar.dev/logo-v2/header.png)
2
+
3
+ # Quasar Framework
4
+
5
+ > Build high-performance VueJS user interfaces in record time: responsive Single Page Apps, SSR Apps, PWAs, Browser extensions, Hybrid Mobile Apps and Electron Apps. If you want, all using the same codebase!
6
+
7
+ [![Join the chat at https://chat.quasar.dev](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://chat.quasar.dev)
8
+ <a href="https://forum.quasar.dev" target="_blank"><img src="https://img.shields.io/badge/community-forum-brightgreen.svg"></a>
9
+ [![https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg](https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg)](https://good-labs.github.io/greater-good-affirmation)
10
+
11
+ ## Scaffolding app
12
+
13
+ This app is used to scaffold Quasar CLI project folders.
14
+
15
+ ```bash
16
+ yarn create quasar
17
+ # or:
18
+ npm init quasar
19
+ ```
20
+
21
+ ## Supporting Quasar
22
+ Quasar Framework is an MIT-licensed open source project. Its ongoing development is made possible thanks to the support by these awesome [backers](https://github.com/rstoenescu/quasar-framework/blob/dev/backers.md).
23
+
24
+ **Please read our manifest on [Why donations are important](https://quasar.dev/why-donate)**. If you'd like to become a donator, check out [Quasar Framework's Donator campaign](https://donate.quasar.dev).
25
+
26
+ ## Documentation
27
+
28
+ Head on to the Quasar Framework official website: [https://quasar.dev](https://quasar.dev)
29
+
30
+ ## Stay in Touch
31
+
32
+ For latest releases and announcements, follow on Twitter: [@quasarframework](https://twitter.com/quasarframework)
33
+
34
+ ## Chat Support
35
+
36
+ Ask questions at the official community Discord server: [https://chat.quasar.dev](https://chat.quasar.dev)
37
+
38
+ ## Community Forum
39
+
40
+ Ask questions at the official community forum: [https://forum.quasar.dev](https://forum.quasar.dev)
41
+
42
+ ## Contributing
43
+
44
+ I'm excited if you want to contribute to Quasar under any form (report bugs, write a plugin, fix an issue, write a new feature). Please read the [Contributing Guide](../CONTRIBUTING.md).
45
+
46
+ ## Semver
47
+ Quasar is following [Semantic Versioning 2.0](https://semver.org/).
48
+
49
+ ## License
50
+
51
+ Copyright (c) 2015-present Razvan Stoenescu
52
+
53
+ [MIT License](http://en.wikipedia.org/wiki/MIT_License)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quasar",
3
- "version": "1.0.9",
3
+ "version": "1.0.12",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "author": {
6
6
  "name": "Razvan Stoenescu",
@@ -53,7 +53,10 @@ module.exports = {
53
53
  __QUASAR_SSR_PWA__: 'readonly',
54
54
  process: 'readonly',
55
55
  Capacitor: 'readonly',
56
- chrome: 'readonly'
56
+ chrome: 'readonly',
57
+ defineProps: 'readonly', // Vue SFC setup compiler macro
58
+ defineEmits: 'readonly', // Vue SFC setup compiler macro
59
+ defineExpose: 'readonly' // Vue SFC setup compiler macro
57
60
  },
58
61
 
59
62
  // add your custom rules here
@@ -92,7 +92,7 @@ const linksList = [
92
92
  icon: 'favorite',
93
93
  link: 'https://awesome.quasar.dev'
94
94
  }
95
- ];
95
+ ]
96
96
 
97
97
  export default defineComponent({
98
98
  name: 'MainLayout',
@@ -54,7 +54,10 @@ module.exports = {
54
54
  __QUASAR_SSR_PWA__: 'readonly',
55
55
  process: 'readonly',
56
56
  Capacitor: 'readonly',
57
- chrome: 'readonly'
57
+ chrome: 'readonly',
58
+ defineProps: 'readonly', // Vue SFC setup compiler macro
59
+ defineEmits: 'readonly', // Vue SFC setup compiler macro
60
+ defineExpose: 'readonly' // Vue SFC setup compiler macro
58
61
  },
59
62
 
60
63
  // add your custom rules here
@@ -67,7 +67,10 @@ module.exports = {
67
67
  __QUASAR_SSR_PWA__: 'readonly',
68
68
  process: 'readonly',
69
69
  Capacitor: 'readonly',
70
- chrome: 'readonly'
70
+ chrome: 'readonly',
71
+ defineProps: 'readonly', // Vue SFC setup compiler macro
72
+ defineEmits: 'readonly', // Vue SFC setup compiler macro
73
+ defineExpose: 'readonly' // Vue SFC setup compiler macro
71
74
  },
72
75
 
73
76
  // add your custom rules here
@@ -66,7 +66,10 @@ module.exports = {
66
66
  __QUASAR_SSR_PWA__: 'readonly',
67
67
  process: 'readonly',
68
68
  Capacitor: 'readonly',
69
- chrome: 'readonly'
69
+ chrome: 'readonly',
70
+ defineProps: 'readonly', // Vue SFC setup compiler macro
71
+ defineEmits: 'readonly', // Vue SFC setup compiler macro
72
+ defineExpose: 'readonly' // Vue SFC setup compiler macro
70
73
  },
71
74
 
72
75
  // add your custom rules here
package/utils/index.js CHANGED
File without changes