vitrify 0.26.5 → 0.26.7

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.
@@ -180,7 +180,7 @@ export interface VitrifyConfig extends ViteUserConfig {
180
180
  /**
181
181
  * UnoCSS Configuration
182
182
  */
183
- unocss?: UnoCSSUserConfig;
183
+ unocss?: UnoCSSUserConfig<any>;
184
184
  /**
185
185
  * unplugin-vue-components configuration
186
186
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrify",
3
- "version": "0.26.5",
3
+ "version": "0.26.7",
4
4
  "license": "MIT",
5
5
  "author": "Stefan van Herwijnen",
6
6
  "description": "Vite as your Full Stack development tool",
@@ -55,17 +55,17 @@
55
55
  "@fastify/middie": "^9.3.2",
56
56
  "@fastify/one-line-logger": "^2.1.0",
57
57
  "@fastify/static": "^9.1.3",
58
- "@unocss/core": "^66.6.8",
59
- "@unocss/preset-uno": "^66.6.8",
60
- "@unocss/preset-web-fonts": "66.6.8",
61
- "@unocss/preset-wind": "^66.6.8",
62
- "@vitejs/plugin-vue": "^6.0.6",
58
+ "@unocss/core": "^66.7.0",
59
+ "@unocss/preset-uno": "^66.7.0",
60
+ "@unocss/preset-web-fonts": "66.7.0",
61
+ "@unocss/preset-wind": "^66.7.0",
62
+ "@vitejs/plugin-vue": "^6.0.7",
63
63
  "ajv": "^8.20.0",
64
64
  "animated-unocss": "^0.0.6",
65
65
  "cac": "^7.0.0",
66
66
  "chalk": "^5.6.2",
67
67
  "cross-env": "^10.1.0",
68
- "devalue": "^5.8.0",
68
+ "devalue": "^5.8.1",
69
69
  "fastify": "^5.8.5",
70
70
  "glob": "^13.0.6",
71
71
  "happy-dom": "^20.9.0",
@@ -73,51 +73,51 @@
73
73
  "magic-string": "^0.30.21",
74
74
  "merge-deep": "^3.0.3",
75
75
  "readline": "^1.3.0",
76
- "rolldown": "1.0.0",
76
+ "rolldown": "1.0.3",
77
77
  "rollup-plugin-visualizer": "^7.0.1",
78
- "sass": "1.99.0",
78
+ "sass": "1.100.0",
79
79
  "stringify-object": "^6.0.0",
80
80
  "ts-node": "^10.9.2",
81
- "unocss": "^66.6.8",
82
- "unplugin-vue-components": "^32.0.0",
83
- "vite": "^8.0.12",
81
+ "unocss": "^66.7.0",
82
+ "unplugin-vue-components": "^32.1.0",
83
+ "vite": "^8.0.14",
84
84
  "vite-plugin-pwa": "^1.3.0",
85
85
  "vitefu": "^1.1.3",
86
- "vitest": "^4.1.6",
86
+ "vitest": "^4.1.7",
87
87
  "workbox-window": "^7.4.1"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@iconify-json/mdi": "^1.2.3",
91
- "@pinia/colada": "^1.3.0",
92
- "@quasar/extras": "^1.18.0",
91
+ "@pinia/colada": "^1.3.1",
92
+ "@quasar/extras": "^2.0.0",
93
93
  "@quasar/quasar-ui-qmarkdown": "^2.0.5",
94
94
  "@quasar/quasar-ui-qmediaplayer": "^2.0.0-beta.0",
95
95
  "@types/connect": "^3.4.38",
96
96
  "@types/glob": "^9.0.0",
97
97
  "@types/merge-deep": "^3.0.3",
98
- "@types/node": "^25.7.0",
98
+ "@types/node": "^25.9.1",
99
99
  "@types/stringify-object": "^4.0.5",
100
100
  "@types/ws": "^8.18.1",
101
- "@unocss/preset-icons": "^66.6.8",
102
- "@vue/runtime-core": "^3.5.34",
101
+ "@unocss/preset-icons": "^66.7.0",
102
+ "@vue/runtime-core": "^3.5.35",
103
103
  "beasties": "^0.4.2",
104
104
  "css": "^3.0.0",
105
105
  "css-to-tailwind-translator": "^1.2.8",
106
106
  "pinia": "^3.0.4",
107
107
  "quasar": "^2.19.3",
108
- "rollup": "^4.60.3",
108
+ "rollup": "^4.60.4",
109
109
  "typescript": "^6.0.3",
110
- "vue": "^3.5.34",
111
- "vue-router": "^5.0.6"
110
+ "vue": "^3.5.35",
111
+ "vue-router": "^5.1.0"
112
112
  },
113
113
  "peerDependencies": {
114
114
  "@fastify/static": "^9.1.3",
115
- "@pinia/colada": "^1.3.0",
115
+ "@pinia/colada": "^1.3.1",
116
116
  "fastify": "^5.8.5",
117
117
  "pinia": "^3.0.4",
118
118
  "quasar": "^2.19.3",
119
- "vue": "^3.5.34",
120
- "vue-router": "^5.0.6"
119
+ "vue": "^3.5.35",
120
+ "vue-router": "^5.1.0"
121
121
  },
122
122
  "publishConfig": {
123
123
  "access": "public",
@@ -220,7 +220,7 @@ export interface VitrifyConfig extends ViteUserConfig {
220
220
  /**
221
221
  * UnoCSS Configuration
222
222
  */
223
- unocss?: UnoCSSUserConfig
223
+ unocss?: UnoCSSUserConfig<any>
224
224
  /**
225
225
  * unplugin-vue-components configuration
226
226
  */