@kimesh/kit 0.2.43 → 0.2.44
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/dist/index.mjs +6 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -3668,8 +3668,13 @@ function kimeshPlugin(options = {}) {
|
|
|
3668
3668
|
presets: layer.isApp ? config.autoImport?.presets || [
|
|
3669
3669
|
"vue",
|
|
3670
3670
|
"vue-router",
|
|
3671
|
+
"pinia",
|
|
3671
3672
|
"kimesh"
|
|
3672
|
-
] : void 0
|
|
3673
|
+
] : void 0,
|
|
3674
|
+
imports: layer.isApp ? (state.kimesh?._registries.importsPresets ?? []).map((p) => ({
|
|
3675
|
+
from: p.from,
|
|
3676
|
+
imports: [...p.imports]
|
|
3677
|
+
})) : void 0
|
|
3673
3678
|
}
|
|
3674
3679
|
}));
|
|
3675
3680
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.44",
|
|
4
4
|
"description": "Build-time engine for Kimesh framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"test:watch": "vitest"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@kimesh/auto-import": "0.2.
|
|
31
|
-
"@kimesh/layers": "0.2.
|
|
32
|
-
"@kimesh/router-generator": "0.2.
|
|
30
|
+
"@kimesh/auto-import": "0.2.44",
|
|
31
|
+
"@kimesh/layers": "0.2.44",
|
|
32
|
+
"@kimesh/router-generator": "0.2.44",
|
|
33
33
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
34
34
|
"c12": "^3.3.3",
|
|
35
35
|
"consola": "^3.4.2",
|