create-quasar 1.0.18 → 1.0.21
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/package.json +1 -1
- package/templates/app/quasar-v2/index.js +2 -2
- package/templates/app/quasar-v2/js-vite/BASE/_package.json +3 -3
- package/templates/app/quasar-v2/js-webpack/BASE/_package.json +2 -2
- package/templates/app/quasar-v2/ts-vite/BASE/_package.json +3 -3
- package/templates/app/quasar-v2/ts-vite/BASE/_tsconfig.json +4 -1
- package/templates/app/quasar-v2/ts-webpack/BASE/_package.json +2 -2
- package/templates/ui-kit/quasar-v2/ae/app-extension/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@ module.exports = async function ({ scope, utils }) {
|
|
|
7
7
|
message: 'Pick Quasar App CLI variant:',
|
|
8
8
|
initial: 0,
|
|
9
9
|
choices: [
|
|
10
|
-
{ title: 'Quasar App CLI with Webpack
|
|
11
|
-
{ title: 'Quasar App CLI with Vite
|
|
10
|
+
{ title: 'Quasar App CLI with Webpack', value: 'webpack' },
|
|
11
|
+
{ title: 'Quasar App CLI with Vite', value: 'vite' }
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
{
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"eslint": "^8.10.0",
|
|
27
27
|
"eslint-plugin-vue": "^8.5.0",
|
|
28
28
|
<% if (lintConfig === 'standard') { %>
|
|
29
|
-
"eslint-config-standard": "^17.0.0
|
|
29
|
+
"eslint-config-standard": "^17.0.0",
|
|
30
30
|
"eslint-plugin-import": "^2.19.1",
|
|
31
|
-
"eslint-plugin-n": "^
|
|
31
|
+
"eslint-plugin-n": "^15.0.0",
|
|
32
32
|
"eslint-plugin-promise": "^6.0.0",
|
|
33
33
|
<% } else if (lintConfig === 'airbnb') { %>
|
|
34
34
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"prettier": "^2.5.1",
|
|
39
39
|
<% } } %>
|
|
40
40
|
<% if (preset.i18n) { %>"@intlify/vite-plugin-vue-i18n": "^3.3.1",<% } %>
|
|
41
|
-
"@quasar/app-vite": "^1.0.0
|
|
41
|
+
"@quasar/app-vite": "^1.0.0",
|
|
42
42
|
"autoprefixer": "^10.4.2"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"eslint-plugin-vue": "^8.5.0",
|
|
30
30
|
"eslint-webpack-plugin": "^3.1.1",
|
|
31
31
|
<% if (lintConfig === 'standard') { %>
|
|
32
|
-
"eslint-config-standard": "^17.0.0
|
|
32
|
+
"eslint-config-standard": "^17.0.0",
|
|
33
33
|
"eslint-plugin-import": "^2.19.1",
|
|
34
|
-
"eslint-plugin-n": "^
|
|
34
|
+
"eslint-plugin-n": "^15.0.0",
|
|
35
35
|
"eslint-plugin-promise": "^6.0.0",
|
|
36
36
|
<% } else if (lintConfig === 'airbnb') { %>
|
|
37
37
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"eslint": "^8.10.0",
|
|
30
30
|
"eslint-plugin-vue": "^8.5.0",
|
|
31
31
|
<% if (lintConfig === 'standard') { %>
|
|
32
|
-
"eslint-config-standard": "^17.0.0
|
|
32
|
+
"eslint-config-standard": "^17.0.0",
|
|
33
33
|
"eslint-plugin-import": "^2.19.1",
|
|
34
|
-
"eslint-plugin-n": "^
|
|
34
|
+
"eslint-plugin-n": "^15.0.0",
|
|
35
35
|
"eslint-plugin-promise": "^6.0.0",
|
|
36
36
|
<% } else if (lintConfig === 'airbnb') { %>
|
|
37
37
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<% } } %>
|
|
43
43
|
"@types/node": "^12.20.21",
|
|
44
44
|
<% if (preset.i18n) { %>"@intlify/vite-plugin-vue-i18n": "^3.3.1",<% } %>
|
|
45
|
-
"@quasar/app-vite": "^1.0.0
|
|
45
|
+
"@quasar/app-vite": "^1.0.0",
|
|
46
46
|
"autoprefixer": "^10.4.2",
|
|
47
47
|
"typescript": "^4.5.4"
|
|
48
48
|
},
|
|
@@ -15,5 +15,8 @@
|
|
|
15
15
|
"experimentalDecorators": true,
|
|
16
16
|
"useDefineForClassFields": true<% } %>
|
|
17
17
|
},
|
|
18
|
-
"include": [
|
|
18
|
+
"include": [
|
|
19
|
+
"src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue",
|
|
20
|
+
"src-pwa/*.d.ts", "src-bex/*.d.ts", "src-ssr/*.d.ts"
|
|
21
|
+
]
|
|
19
22
|
}
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"eslint": "^8.10.0",
|
|
31
31
|
"eslint-plugin-vue": "^8.5.0",
|
|
32
32
|
<% if (lintConfig === 'standard') { %>
|
|
33
|
-
"eslint-config-standard": "^17.0.0
|
|
33
|
+
"eslint-config-standard": "^17.0.0",
|
|
34
34
|
"eslint-plugin-import": "^2.19.1",
|
|
35
|
-
"eslint-plugin-n": "^
|
|
35
|
+
"eslint-plugin-n": "^15.0.0",
|
|
36
36
|
"eslint-plugin-promise": "^6.0.0",
|
|
37
37
|
<% } else if (lintConfig === 'airbnb') { %>
|
|
38
38
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
@@ -24,7 +24,7 @@ module.exports = function (api) {
|
|
|
24
24
|
api.compatibleWith('quasar', '^2.0.0')
|
|
25
25
|
|
|
26
26
|
if (api.hasVite) {
|
|
27
|
-
api.compatibleWith('@quasar/app-vite', '^1.0.0
|
|
27
|
+
api.compatibleWith('@quasar/app-vite', '^1.0.0')
|
|
28
28
|
}
|
|
29
29
|
else if (api.hasWebpack) {
|
|
30
30
|
api.compatibleWith('@quasar/app-webpack', '^3.4.0')
|