Skip to content

Commit 2bc9e04

Browse files
committed
chore: align app extension with app-vite beta.41
1 parent 2a6908e commit 2bc9e04

8 files changed

Lines changed: 57 additions & 47 deletions

File tree

packages/app-extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ quasar ext add @quasar/qwindow@beta
2222
## Requirements
2323

2424
- Quasar v2.
25-
- `@quasar/app-vite` >=3.0.0-beta.40.
25+
- `@quasar/app-vite` >=3.0.0-beta.41.
2626

2727
## Uninstall
2828

packages/app-extension/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
],
3131
"type": "module",
3232
"main": "dist/index.js",
33+
"imports": {
34+
"#q-app": "@quasar/app-vite"
35+
},
3336
"publishConfig": {
3437
"access": "public"
3538
},
@@ -42,12 +45,12 @@
4245
"@quasar/quasar-ui-qwindow": "workspace:^"
4346
},
4447
"devDependencies": {
45-
"@quasar/app-vite": "3.0.0-beta.40",
48+
"@quasar/app-vite": "3.0.0-beta.41",
4649
"quasar": "^2.19.3",
4750
"typescript": "~6.0.3"
4851
},
4952
"peerDependencies": {
50-
"@quasar/app-vite": ">=3.0.0-beta.40"
53+
"@quasar/app-vite": ">=3.0.0-beta.41"
5154
},
5255
"engines": {
5356
"node": ">=22.13",

packages/app-extension/src/boot/vite-register.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBoot } from "@quasar/app-vite";
1+
import { defineBoot } from "#q-app";
22
import VuePlugin from "@quasar/quasar-ui-qwindow";
33

44
export default defineBoot(({ app }) => {

packages/app-extension/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Docs: https://quasar.dev/app-extensions/development-guide/index-api
66
*/
77

8-
import { defineIndexScript } from "@quasar/app-vite";
8+
import { defineIndexScript } from "#q-app";
99

1010
export default defineIndexScript((api) => {
1111
api.compatibleWith("quasar", "^2.0.0");
12-
api.compatibleWith("@quasar/app-vite", ">=3.0.0-beta.40");
12+
api.compatibleWith("@quasar/app-vite", ">=3.0.0-beta.41");
1313

1414
api.registerDescribeApi("QWindow", "~@quasar/quasar-ui-qwindow/dist/api/QWindow.json");
1515

packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@md-plugins/vite-examples-plugin": "0.1.0-beta.24",
3434
"@md-plugins/vite-md-plugin": "0.1.0-beta.24",
3535
"@md-plugins/vite-ssg-plugin": "0.1.0-beta.24",
36-
"@quasar/app-vite": "3.0.0-beta.40",
36+
"@quasar/app-vite": "3.0.0-beta.41",
3737
"@quasar/quasar-ui-qwindow": "workspace:*",
3838
"@types/node": "^25.9.2",
3939
"autoprefixer": "^10.5.0",

packages/docs/src/markdown/getting-started/installation-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ While QWindow v3 is in beta, install with:
2626
quasar ext add @quasar/qwindow@beta
2727
```
2828

29-
The QWindow v3 App Extension targets Quasar CLI Vite 3 and requires `@quasar/app-vite` >=3.0.0-beta.40. It
29+
The QWindow v3 App Extension targets Quasar CLI Vite 3 and requires `@quasar/app-vite` >=3.0.0-beta.41. It
3030
does not support webpack-based Quasar applications.
3131

3232
### Manual Boot File
@@ -47,7 +47,7 @@ npm install @quasar/quasar-ui-qwindow@beta
4747
Then create and register a boot file:
4848

4949
```js
50-
import { defineBoot } from "@quasar/app-vite";
50+
import { defineBoot } from "#q-app";
5151
import Plugin from "@quasar/quasar-ui-qwindow";
5252
import "@quasar/quasar-ui-qwindow/dist/index.css";
5353

packages/docs/src/markdown/other/upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tooling.
1313
## Requirements
1414

1515
- Vue 3 and Quasar v2.
16-
- Quasar CLI Vite with `@quasar/app-vite` >=3.0.0-beta.40 for the App Extension.
16+
- Quasar CLI Vite with `@quasar/app-vite` >=3.0.0-beta.41 for the App Extension.
1717
- Node.js 22.13 or newer.
1818
- pnpm 11.4 or newer when working in this repository.
1919

pnpm-lock.yaml

Lines changed: 44 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)