@mono-labs/cli 0.0.90 → 0.0.92

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.
@@ -56,7 +56,7 @@ program
56
56
  console.log('envObj', envObj);
57
57
  envObj.EAS_BUILD_PROFILE = profile; // your custom variable
58
58
 
59
- const command = `mono expo eas build --profile ${profile} --platform ${platform}`;
59
+ const command = `mono app eas build --profile ${profile} --platform ${platform}`;
60
60
  console.log('Running command:', command);
61
61
  const child = spawn('yarn', [command], {
62
62
  stdio: 'inherit',
package/lib/index.js CHANGED
@@ -45,7 +45,7 @@ program.on('command:*', (operands) => {
45
45
  });
46
46
  });
47
47
 
48
- console.log('envObj:', env);
48
+ console.log('envObj:', envObj);
49
49
 
50
50
  // If the “rest” is empty or starts with flags, insert a default script
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",