@poveste/plugin-quasar 0.11.0 → 0.12.1
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/README.md +7 -0
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -2,9 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Builds a Poveste book inside a Quasar project.
|
|
4
4
|
|
|
5
|
+
```bash
|
|
6
|
+
pnpm add -D poveste @poveste/plugin-vue @poveste/plugin-quasar
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Add both plugins in poveste config:
|
|
10
|
+
|
|
5
11
|
```ts
|
|
6
12
|
import { HstQuasar } from '@poveste/plugin-quasar'
|
|
7
13
|
import { HstVue } from '@poveste/plugin-vue'
|
|
14
|
+
import { defineConfig } from 'poveste'
|
|
8
15
|
|
|
9
16
|
export default defineConfig({
|
|
10
17
|
plugins: [
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poveste/plugin-quasar",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.12.1",
|
|
5
5
|
"description": "Poveste plugin that builds a book inside a Quasar project",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "Sorin Gitlan"
|
|
7
|
+
"name": "Sorin Gitlan",
|
|
8
|
+
"url": "https://x.com/50rayn"
|
|
8
9
|
},
|
|
9
10
|
"license": "MIT",
|
|
10
11
|
"homepage": "https://poveste.dev",
|
|
@@ -51,23 +52,23 @@
|
|
|
51
52
|
},
|
|
52
53
|
"peerDependencies": {
|
|
53
54
|
"@quasar/app-vite": "^3.8.0",
|
|
55
|
+
"poveste": "^0.12.1",
|
|
54
56
|
"quasar": "^2.24.0",
|
|
55
|
-
"vue": "^3.5.26"
|
|
56
|
-
"poveste": "^0.11.0"
|
|
57
|
+
"vue": "^3.5.26"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
60
|
+
"@poveste/shared": "0.12.1",
|
|
61
|
+
"pathe": "^1.1.2"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@quasar/app-vite": "^3.8.1",
|
|
64
65
|
"@types/node": "^22.10.1",
|
|
66
|
+
"poveste": "0.12.1",
|
|
65
67
|
"quasar": "^2.27.0",
|
|
66
68
|
"typescript": "5.6.3",
|
|
67
69
|
"vite": "^8.2.0",
|
|
68
70
|
"vitest": "^4.1.10",
|
|
69
|
-
"vue": "^3.5.26"
|
|
70
|
-
"poveste": "0.11.0"
|
|
71
|
+
"vue": "^3.5.26"
|
|
71
72
|
},
|
|
72
73
|
"scripts": {
|
|
73
74
|
"build": "rimraf dist && tsc -d",
|