create-quasar 1.0.10 → 1.0.13
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/index.js +1 -1
- package/package.json +1 -1
- package/templates/app/quasar-v2/js-vite/lint/_eslintrc.js +4 -1
- package/templates/app/quasar-v2/js-webpack/BASE/src/layouts/MainLayout.vue +1 -1
- package/templates/app/quasar-v2/js-webpack/lint/_eslintrc.js +4 -1
- package/templates/app/quasar-v2/ts-vite/lint/_eslintrc.js +4 -1
- package/templates/app/quasar-v2/ts-webpack/lint/_eslintrc.js +4 -1
- package/utils/index.js +0 -0
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -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
|
|
@@ -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
|