create-quasar 1.0.16 → 1.0.19
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/js-vite/BASE/_.vscode/extensions.json +1 -1
- package/templates/app/quasar-v2/js-vite/BASE/_package.json +3 -3
- package/templates/app/quasar-v2/js-webpack/BASE/_.vscode/extensions.json +1 -1
- package/templates/app/quasar-v2/js-webpack/BASE/_package.json +2 -2
- package/templates/app/quasar-v2/ts-vite/BASE/_.vscode/extensions.json +1 -1
- package/templates/app/quasar-v2/ts-vite/BASE/_package.json +3 -3
- package/templates/app/quasar-v2/ts-vite/lint/_.eslintrc.js +1 -1
- package/templates/app/quasar-v2/ts-webpack/BASE/_.vscode/extensions.json +1 -1
- package/templates/app/quasar-v2/ts-webpack/BASE/_package.json +2 -2
- package/templates/app/quasar-v2/ts-webpack/lint/_.eslintrc.js +1 -1
- package/templates/ui-kit/quasar-v2/BASE/ui/_package.json +1 -1
- package/templates/ui-kit/quasar-v2/ae/app-extension/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
},
|
|
@@ -120,7 +120,7 @@ module.exports = {
|
|
|
120
120
|
// in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
|
|
121
121
|
'@typescript-eslint/no-var-requires': 'off',
|
|
122
122
|
|
|
123
|
-
// The core 'no-unused-vars' rules (in the eslint:
|
|
123
|
+
// The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
|
|
124
124
|
// does not work with type definitions
|
|
125
125
|
'no-unused-vars': 'off',
|
|
126
126
|
|
|
@@ -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",
|
|
@@ -124,7 +124,7 @@ module.exports = {
|
|
|
124
124
|
// in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
|
|
125
125
|
'@typescript-eslint/no-var-requires': 'off',
|
|
126
126
|
|
|
127
|
-
// The core 'no-unused-vars' rules (in the eslint:
|
|
127
|
+
// The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
|
|
128
128
|
// does not work with type definitions
|
|
129
129
|
'no-unused-vars': 'off',
|
|
130
130
|
|
|
@@ -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')
|