@tinacms/cli 0.0.0-a28012f-20250515060252 → 0.0.0-a2d983e-20251110043859
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/README.md +5 -5
- package/dist/cmds/init/prompts/index.d.ts +1 -1
- package/dist/cmds/init/prompts/types.d.ts +1 -1
- package/dist/index.js +448 -412
- package/dist/next/commands/build-command/index.d.ts +3 -0
- package/dist/server/server.d.ts +1 -1
- package/dist/utils/path.d.ts +3 -0
- package/dist/utils/sleep.d.ts +1 -0
- package/package.json +9 -8
|
@@ -20,8 +20,11 @@ export declare class BuildCommand extends BaseCommand {
|
|
|
20
20
|
catch(error: any): Promise<void>;
|
|
21
21
|
execute(): Promise<number | void>;
|
|
22
22
|
checkClientInfo(configManager: ConfigManager, apiURL: string, previewBaseBranch?: string): Promise<{
|
|
23
|
+
branchKnown: boolean;
|
|
23
24
|
hasUpstream: boolean;
|
|
24
25
|
timestamp: number;
|
|
26
|
+
detectedBotBranch: boolean;
|
|
27
|
+
defaultBranch: string | undefined;
|
|
25
28
|
}>;
|
|
26
29
|
syncProject(configManager: ConfigManager, apiURL: string, options?: {
|
|
27
30
|
upstreamBranch?: string;
|
package/dist/server/server.d.ts
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
*/
|
|
4
4
|
import http from 'node:http';
|
|
5
|
-
export declare const gqlServer: (database: any, verbose: boolean) => Promise<http.Server<typeof
|
|
5
|
+
export declare const gqlServer: (database: any, verbose: boolean) => Promise<http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>>;
|
package/dist/utils/sleep.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/cli",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-a2d983e-20251110043859",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -37,11 +37,12 @@
|
|
|
37
37
|
"@types/listr": "0.14.2",
|
|
38
38
|
"@types/log4js": "^2.3.5",
|
|
39
39
|
"@types/multer": "^1.4.12",
|
|
40
|
+
"@types/node": "^22.13.1",
|
|
40
41
|
"@types/progress": "^2.0.7",
|
|
41
42
|
"@types/prompts": "^2.4.9",
|
|
42
43
|
"@types/yup": "^0.32.0",
|
|
43
44
|
"jest": "^29.7.0",
|
|
44
|
-
"@tinacms/scripts": "1.
|
|
45
|
+
"@tinacms/scripts": "1.4.0"
|
|
45
46
|
},
|
|
46
47
|
"dependencies": {
|
|
47
48
|
"@graphql-codegen/core": "^2.6.8",
|
|
@@ -89,12 +90,12 @@
|
|
|
89
90
|
"vite": "^4.5.9",
|
|
90
91
|
"yup": "^1.6.1",
|
|
91
92
|
"zod": "^3.24.2",
|
|
92
|
-
"@tinacms/app": "0.0.0-
|
|
93
|
-
"@tinacms/
|
|
94
|
-
"@tinacms/schema-tools": "
|
|
95
|
-
"@tinacms/
|
|
96
|
-
"
|
|
97
|
-
"tinacms": "
|
|
93
|
+
"@tinacms/app": "0.0.0-a2d983e-20251110043859",
|
|
94
|
+
"@tinacms/graphql": "1.6.1",
|
|
95
|
+
"@tinacms/schema-tools": "1.9.1",
|
|
96
|
+
"@tinacms/search": "1.1.1",
|
|
97
|
+
"tinacms": "0.0.0-a2d983e-20251110043859",
|
|
98
|
+
"@tinacms/metrics": "1.1.0"
|
|
98
99
|
},
|
|
99
100
|
"publishConfig": {
|
|
100
101
|
"registry": "https://registry.npmjs.org"
|