Skip to content

Commit 0d93741

Browse files
committed
feat(app-ext): Future compatible with next version of quasar/app-*
1 parent 03f82df commit 0d93741

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app-extension/src/index.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,10 @@ module.exports = function (api) {
6464
api.compatibleWith('quasar', '^2.0.0')
6565

6666
if (api.hasVite === true) {
67-
api.compatibleWith('@quasar/app-vite', '^1.0.0-alpha.0')
67+
api.compatibleWith('@quasar/app-vite', '^1.0.0|^2.0.0')
6868
}
6969
else {
70-
// should be "@quasar/app-webpack" but that is not backward compatible
71-
api.compatibleWith('@quasar/app', '^3.0.0')
70+
api.compatibleWith('@quasar/app-webpack', '^3.0.0|^4.0.0')
7271
}
7372

7473
// Uncomment the line below if you provide a JSON API for your component

0 commit comments

Comments
 (0)