@kimesh/kit 0.2.17 → 0.2.18-nightly.20260127045156
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 +10 -0
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -1727,6 +1727,16 @@ function generateTsConfig(options) {
|
|
|
1727
1727
|
paths[`${pkg}/*`] = [`../node_modules/${pkg}/*`];
|
|
1728
1728
|
}
|
|
1729
1729
|
}
|
|
1730
|
+
const kimeshDir = resolvePackageDir("kimesh", rootDir);
|
|
1731
|
+
if (kimeshDir) {
|
|
1732
|
+
const viteDir = resolvePackageDir("vite", kimeshDir);
|
|
1733
|
+
if (viteDir) {
|
|
1734
|
+
const relativeVitePath = relative(buildDir, viteDir);
|
|
1735
|
+
const normalizedPath = relativeVitePath.startsWith("..") ? relativeVitePath : "./" + relativeVitePath;
|
|
1736
|
+
paths["vite"] = [normalizedPath];
|
|
1737
|
+
paths["vite/*"] = [`${normalizedPath}/*`];
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1730
1740
|
return {
|
|
1731
1741
|
compilerOptions: {
|
|
1732
1742
|
target: "ESNext",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18-nightly.20260127045156",
|
|
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": "
|
|
31
|
-
"@kimesh/layers": "
|
|
32
|
-
"@kimesh/router-generator": "
|
|
30
|
+
"@kimesh/auto-import": "workspace:*",
|
|
31
|
+
"@kimesh/layers": "workspace:*",
|
|
32
|
+
"@kimesh/router-generator": "workspace:*",
|
|
33
33
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
34
34
|
"c12": "^3.3.3",
|
|
35
35
|
"consola": "^3.4.2",
|