@tinacms/cli 0.0.0-9469786-20241216063424 → 0.0.0-9594668-20241223035907

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.
@@ -0,0 +1,7 @@
1
+ export declare function loadViteConfig(rootPath: string): Promise<{
2
+ path: string;
3
+ config: import("vite").UserConfig;
4
+ dependencies: string[];
5
+ } | {
6
+ config: import("vite").UserConfig;
7
+ }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/cli",
3
- "version": "0.0.0-9469786-20241216063424",
3
+ "version": "0.0.0-9594668-20241223035907",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -37,7 +37,6 @@
37
37
  "@types/prompts": "^2.4.9",
38
38
  "@types/yup": "^0.32.0",
39
39
  "jest": "^29.7.0",
40
- "tsconfig-paths": "^4.2.0",
41
40
  "@tinacms/scripts": "1.3.1"
42
41
  },
43
42
  "dependencies": {
@@ -66,8 +65,7 @@
66
65
  "cors": "^2.8.5",
67
66
  "crypto-js": "^4.2.0",
68
67
  "dotenv": "^16.4.5",
69
- "esbuild": "^0.18.20",
70
- "esbuild-plugin-alias-path": "^2.0.2",
68
+ "esbuild": "^0.24.0",
71
69
  "fs-extra": "^11.2.0",
72
70
  "graphql": "15.8.0",
73
71
  "js-yaml": "^4.1.0",
@@ -89,8 +87,8 @@
89
87
  "@tinacms/app": "2.1.14",
90
88
  "@tinacms/graphql": "1.5.9",
91
89
  "@tinacms/metrics": "1.0.8",
92
- "@tinacms/search": "1.0.36",
93
90
  "@tinacms/schema-tools": "1.6.9",
91
+ "@tinacms/search": "1.0.36",
94
92
  "tinacms": "2.5.2"
95
93
  },
96
94
  "publishConfig": {
@@ -1,7 +0,0 @@
1
- /**
2
- * Converts TypeScript-style `paths` aliases to esbuild-compatible format.
3
- * @param {string} absoluteBaseUrl - The absolute base URL from tsconfig.
4
- * @param {Record<string, string[]>} paths - The alias paths from tsconfig.
5
- * @returns {Record<string, string>} - A mapping of esbuild-compatible aliases.
6
- */
7
- export declare function resolveTsPathsToEsbuildAliases(absoluteBaseUrl: any, paths: any): {};