@kimesh/kit 0.2.18-nightly.20260127045721 → 0.2.18
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 +1 -4
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -1728,7 +1728,6 @@ function generateTsConfig(options) {
|
|
|
1728
1728
|
}
|
|
1729
1729
|
}
|
|
1730
1730
|
const kimeshDir = resolvePackageDir("kimesh", rootDir);
|
|
1731
|
-
let viteTypesPath;
|
|
1732
1731
|
if (kimeshDir) {
|
|
1733
1732
|
const viteDir = resolvePackageDir("vite", kimeshDir);
|
|
1734
1733
|
if (viteDir) {
|
|
@@ -1736,7 +1735,6 @@ function generateTsConfig(options) {
|
|
|
1736
1735
|
const normalizedPath = relativeVitePath.startsWith("..") ? relativeVitePath : "./" + relativeVitePath;
|
|
1737
1736
|
paths["vite"] = [normalizedPath];
|
|
1738
1737
|
paths["vite/*"] = [`${normalizedPath}/*`];
|
|
1739
|
-
viteTypesPath = `${normalizedPath}/client`;
|
|
1740
1738
|
}
|
|
1741
1739
|
}
|
|
1742
1740
|
return {
|
|
@@ -1753,8 +1751,7 @@ function generateTsConfig(options) {
|
|
|
1753
1751
|
skipLibCheck: true,
|
|
1754
1752
|
noEmit: true,
|
|
1755
1753
|
baseUrl: ".",
|
|
1756
|
-
paths
|
|
1757
|
-
...viteTypesPath ? { types: [viteTypesPath] } : {}
|
|
1754
|
+
paths
|
|
1758
1755
|
},
|
|
1759
1756
|
include
|
|
1760
1757
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/kit",
|
|
3
|
-
"version": "0.2.18
|
|
3
|
+
"version": "0.2.18",
|
|
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": "0.2.18",
|
|
31
|
+
"@kimesh/layers": "0.2.18",
|
|
32
|
+
"@kimesh/router-generator": "0.2.18",
|
|
33
33
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
34
34
|
"c12": "^3.3.3",
|
|
35
35
|
"consola": "^3.4.2",
|