@mono-labs/cli 0.0.170 → 0.0.173

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.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/types.d.ts +11 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.170",
3
+ "version": "0.0.173",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -48,7 +48,8 @@
48
48
  "tree-kill": "^1.2.2"
49
49
  },
50
50
  "devDependencies": {
51
- "eslint": "^8.57.0"
51
+ "eslint": "^8.57.0",
52
+ "expo": "^54.0.31"
52
53
  },
53
54
  "files": [
54
55
  "bin/",
package/types.d.ts CHANGED
@@ -46,38 +46,36 @@ declare module '@mono-labs/cli' {
46
46
  config: HasteConfig;
47
47
  }
48
48
 
49
- export declare function filterUnwantedEnvVarsEAS(
50
- env: string
51
- ): NodeJS.ProcessEnv;
52
- export declare function filterUnwantedEnvVars(env: string): NodeJS.ProcessEnv;
49
+ export function filterUnwantedEnvVarsEAS(env: string): NodeJS.ProcessEnv;
50
+ export function filterUnwantedEnvVars(env: string): NodeJS.ProcessEnv;
53
51
 
54
- export declare function replaceTokens(
52
+ export function replaceTokens(
55
53
  input: string,
56
54
  tokens: Record<string, string>
57
55
  ): string;
58
56
  // Function type declarations
59
- export declare function generateNewEnvList(
57
+ export function generateNewEnvList(
60
58
  processEnv: NodeJS.ProcessEnv
61
59
  ): NodeJS.ProcessEnv;
62
60
 
63
- export declare function boot(): BootResult;
61
+ export function boot(): BootResult;
64
62
 
65
- export declare function getHasteConfig(): {
63
+ export function getHasteConfig(): {
66
64
  files: HasteFiles;
67
65
  config: HasteConfig;
68
66
  };
69
67
 
70
- export declare function getRootDirectory(): string;
71
- export declare function getRootJson(): any;
68
+ export function getRootDirectory(): string;
69
+ export function getRootJson(): any;
72
70
 
73
- export declare function buildCommands(files: HasteFiles): void;
71
+ export function buildCommands(files: HasteFiles): void;
74
72
 
75
- export declare function runHasteCommand(
73
+ export function runHasteCommand(
76
74
  configObject: CommandConfig,
77
75
  options: Record<string, any>
78
76
  ): Promise<void>;
79
77
 
80
- export declare function verifyOptionValue(
78
+ export function verifyOptionValue(
81
79
  optionKey: string,
82
80
  value: any,
83
81
  optionsData: Record<string, OptionConfig>