create-quasar 1.0.7 → 1.0.10
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
|
-
|
|
1
|
+

|
|
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
|
+
[](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)
|
|
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
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
<% if (preset.lint && lintConfig === 'airbnb') { %>/* eslint func-names: 0 */
|
|
12
12
|
/* eslint global-require: 0 */<% } %>
|
|
13
13
|
const { configure } = require('quasar/wrappers');
|
|
14
|
+
<% if (preset.i18n) { %>const path = require('path');<% } %>
|
|
14
15
|
|
|
15
16
|
module.exports = configure(function (/* ctx */) {
|
|
16
17
|
return {
|
|
@@ -80,7 +81,13 @@ module.exports = configure(function (/* ctx */) {
|
|
|
80
81
|
// viteVuePluginOptions: {},
|
|
81
82
|
|
|
82
83
|
<% if (preset.i18n) { %>vitePlugins: [
|
|
83
|
-
[
|
|
84
|
+
['@intlify/vite-plugin-vue-i18n', {
|
|
85
|
+
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
|
|
86
|
+
// compositionOnly: false,
|
|
87
|
+
|
|
88
|
+
// you need to set i18n resource including paths !
|
|
89
|
+
include: path.resolve(__dirname, './src/i18n/**')
|
|
90
|
+
}]
|
|
84
91
|
]<% } else { %>
|
|
85
92
|
// vitePlugins: [
|
|
86
93
|
// [ 'package-name', { ..options.. } ]
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
/* eslint global-require: 0 */
|
|
13
13
|
<% } %>
|
|
14
14
|
const { configure } = require('quasar/wrappers');
|
|
15
|
+
<% if (preset.i18n) { %>const path = require('path');<% } %>
|
|
15
16
|
|
|
16
17
|
module.exports = configure(function (/* ctx */) {
|
|
17
18
|
return {
|
|
@@ -81,7 +82,13 @@ module.exports = configure(function (/* ctx */) {
|
|
|
81
82
|
// viteVuePluginOptions: {},
|
|
82
83
|
|
|
83
84
|
<% if (preset.i18n) { %>vitePlugins: [
|
|
84
|
-
[
|
|
85
|
+
['@intlify/vite-plugin-vue-i18n', {
|
|
86
|
+
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
|
|
87
|
+
// compositionOnly: false,
|
|
88
|
+
|
|
89
|
+
// you need to set i18n resource including paths !
|
|
90
|
+
include: path.resolve(__dirname, './src/i18n/**')
|
|
91
|
+
}]
|
|
85
92
|
]<% } else { %>
|
|
86
93
|
// vitePlugins: [
|
|
87
94
|
// [ 'package-name', { ..options.. } ]
|