@capgo/cli 7.65.0 → 7.66.1
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.js +85 -85
- package/dist/package.json +3 -5
- package/dist/src/sdk.js +103 -103
- package/dist/src/utils.d.ts +1 -1
- package/package.json +3 -5
package/dist/src/utils.d.ts
CHANGED
|
@@ -3597,7 +3597,7 @@ export declare function checkRemoteCliMessages(supabase: SupabaseClient<Database
|
|
|
3597
3597
|
export declare function checkPlanValid(supabase: SupabaseClient<Database>, orgId: string, apikey: string, appId?: string, warning?: boolean): Promise<void>;
|
|
3598
3598
|
export declare function checkPlanValidUpload(supabase: SupabaseClient<Database>, orgId: string, apikey: string, appId?: string, warning?: boolean): Promise<void>;
|
|
3599
3599
|
export declare function findSavedKey(quiet?: boolean): string;
|
|
3600
|
-
export declare function getContentType(filename: string): string
|
|
3600
|
+
export declare function getContentType(filename: string): string;
|
|
3601
3601
|
export declare function findProjectType(): Promise<"unknown" | "angular-ts" | "angular-js" | "nuxtjs-ts" | "nuxtjs-js" | "nextjs-ts" | "nextjs-js" | "sveltekit-ts" | "sveltekit-js" | "svelte-ts" | "svelte-js" | "vue-ts" | "vue-js" | "react-ts" | "react-js">;
|
|
3602
3602
|
export declare function findMainFileForProjectType(projectType: string, isTypeScript: boolean): string | null;
|
|
3603
3603
|
export declare function findBuildCommandForProjectType(projectType: string): Promise<"build" | "generate">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.66.1",
|
|
4
4
|
"description": "A CLI to upload to capgo servers",
|
|
5
5
|
"author": "Martin martin@capgo.app",
|
|
6
6
|
"license": "Apache 2.0",
|
|
@@ -86,17 +86,15 @@
|
|
|
86
86
|
"ci-info": "^4.3.1",
|
|
87
87
|
"commander": "^14.0.2",
|
|
88
88
|
"eslint": "^9.38.0",
|
|
89
|
-
"git-format-staged": "3.1.
|
|
89
|
+
"git-format-staged": "3.1.3",
|
|
90
90
|
"husky": "^9.1.7",
|
|
91
91
|
"is-wsl": "^3.1.0",
|
|
92
|
+
"micromatch": "^4.0.8",
|
|
92
93
|
"open": "^11.0.0",
|
|
93
94
|
"prettyjson": "^1.2.5",
|
|
94
95
|
"tmp": "^0.2.5",
|
|
95
96
|
"tus-js-client": "^4.3.1",
|
|
96
97
|
"typescript": "^5.9.3",
|
|
97
98
|
"zod": "^3.24.0"
|
|
98
|
-
},
|
|
99
|
-
"dependencies": {
|
|
100
|
-
"micromatch": "^4.0.8"
|
|
101
99
|
}
|
|
102
100
|
}
|