Skip to content

Commit 5f5de94

Browse files
committed
chore: update app-vite and md-plugins
1 parent 28f0017 commit 5f5de94

7 files changed

Lines changed: 126 additions & 114 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.43.
25+
- `@quasar/app-vite` >=3.0.0-beta.44.
2626

2727
## Uninstall
2828

packages/app-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
"@quasar/quasar-ui-qwindow": "workspace:^"
4646
},
4747
"devDependencies": {
48-
"@quasar/app-vite": "3.0.0-beta.43",
48+
"@quasar/app-vite": "3.0.0-beta.44",
4949
"quasar": "^2.19.3",
5050
"typescript": "~6.0.3"
5151
},
5252
"peerDependencies": {
53-
"@quasar/app-vite": ">=3.0.0-beta.43"
53+
"@quasar/app-vite": ">=3.0.0-beta.44"
5454
},
5555
"engines": {
5656
"node": ">=22.13",

packages/app-extension/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ 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.43");
12+
api.compatibleWith("@quasar/app-vite", ">=3.0.0-beta.44");
1313

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

packages/docs/package.json

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,29 @@
1616
"build": "pnpm run build:ssg",
1717
"postinstall": "quasar prepare --silent",
1818
"build:spa": "quasar build",
19-
"build:ssg": "quasar prepare && quasar build && qpress-ssg"
19+
"build:ssg": "quasar prepare && quasar build && qpress-ssg",
20+
"build:ssg:renderer": "quasar prepare && quasar build -m ssr",
21+
"prerender:ssg": "qpress-ssg"
2022
},
2123
"dependencies": {
2224
"@quasar/extras": "2.0.0",
2325
"markdown-it": "^14.2.0",
2426
"markdown-it-container": "^4.0.0",
2527
"pinia": "^3.0.4",
2628
"quasar": "^2.19.3",
27-
"shiki": "^4.2.0",
29+
"shiki": "^4.1.0",
2830
"vue": "^3.5.35",
29-
"vue-router": "^5.1.0"
31+
"vue-router": "^5.1.0",
32+
"@md-plugins/vite-ssg-plugin": "^0.1.0-beta.28",
33+
"@vue/server-renderer": "^3.5.0",
34+
"mermaid": "^11.15.0"
3035
},
3136
"devDependencies": {
32-
"@md-plugins/quasar-app-extension-q-press": "0.1.0-beta.27",
33-
"@md-plugins/vite-examples-plugin": "0.1.0-beta.27",
34-
"@md-plugins/vite-md-plugin": "0.1.0-beta.27",
35-
"@md-plugins/vite-ssg-plugin": "0.1.0-beta.27",
36-
"@quasar/app-vite": "3.0.0-beta.43",
37+
"@md-plugins/quasar-app-extension-q-press": "0.1.0-beta.28",
38+
"@md-plugins/vite-examples-plugin": "0.1.0-beta.28",
39+
"@md-plugins/vite-md-plugin": "0.1.0-beta.28",
40+
"@md-plugins/vite-ssg-plugin": "0.1.0-beta.28",
41+
"@quasar/app-vite": "3.0.0-beta.44",
3742
"@quasar/quasar-ui-qwindow": "workspace:*",
3843
"@types/node": "^25.9.2",
3944
"autoprefixer": "^10.5.0",
@@ -47,4 +52,4 @@
4752
"pnpm": ">=11.5.0"
4853
},
4954
"productName": "QWindow Docs"
50-
}
55+
}

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

Lines changed: 1 addition & 1 deletion
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.43. It
29+
The QWindow v3 App Extension targets Quasar CLI Vite 3 and requires `@quasar/app-vite` >=3.0.0-beta.44. It
3030
does not support webpack-based Quasar applications.
3131

3232
### Manual Boot File

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.43 for the App Extension.
16+
- Quasar CLI Vite with `@quasar/app-vite` >=3.0.0-beta.44 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: 106 additions & 99 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)