@md-plugins/quasar-app-extension-vite-md-plugin 0.1.0-beta.14 → 0.1.0-beta.16
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 +4 -4
- package/src/index.js +1 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/quasar-app-extension-vite-md-plugin",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.16",
|
|
4
4
|
"description": "A Quasar app-ext for @md-plugins/viteMdPlugin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app extension",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@quasar/app-vite": "3.0.0-beta.
|
|
21
|
-
"@md-plugins/vite-md-plugin": "0.1.0-beta.
|
|
20
|
+
"@quasar/app-vite": "3.0.0-beta.32",
|
|
21
|
+
"@md-plugins/vite-md-plugin": "0.1.0-beta.16"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@quasar/app-vite": ">=3.0.0-beta.
|
|
24
|
+
"@quasar/app-vite": ">=3.0.0-beta.32"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=22.13",
|
package/src/index.js
CHANGED
|
@@ -26,13 +26,8 @@ function extendConfig(config) {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export default defineIndexScript((api) => {
|
|
29
|
-
// verify this is a Vite project
|
|
30
|
-
if (!api.hasVite) {
|
|
31
|
-
throw new Error('This extension requires Vite')
|
|
32
|
-
}
|
|
33
|
-
|
|
34
29
|
api.compatibleWith('quasar', '^2.0.0')
|
|
35
|
-
api.compatibleWith('@quasar/app-vite', '>=3.0.0-beta.
|
|
30
|
+
api.compatibleWith('@quasar/app-vite', '>=3.0.0-beta.32')
|
|
36
31
|
|
|
37
32
|
// here we extend /quasar.config, so we can add some Vite/Vue stuff
|
|
38
33
|
api.extendQuasarConf(extendConfig)
|