@mono-labs/cli 0.0.183 → 0.0.184

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.183",
3
+ "version": "0.0.184",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -67,8 +67,17 @@ export function detectWorkspaceAndConfigPath(
67
67
  return { cwd, workspaceRoot, isWorkspaceRoot, configDir, configPath };
68
68
  }
69
69
 
70
+ type DefaultAppConfig = {
71
+ appleAppId?: string;
72
+ androidAppId?: string;
73
+ appName?: string;
74
+ easProjectId?: string;
75
+ appScheme?: string;
76
+ regions?: string[];
77
+ };
78
+
70
79
  /** Convenience: load the JSON config using the resolution logic above. */
71
- export function loadAppConfig<T = unknown>(
80
+ export function loadAppConfig<T = DefaultAppConfig>(
72
81
  startDir: string = process.cwd(),
73
82
  configFileName: string = 'app.config.json'
74
83
  ): { config: T; meta: WorkspaceDetectResult } {