@mono-labs/cli 0.0.55 → 0.0.57

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 eas build --profile ${profile} --platform ${platform}`;
59
+ const command = `mono expo eas build --profile ${profile} --platform ${platform}`;
60
60
  console.log('Running command:', command);
61
61
  const child = spawn('yarn', [command], {
62
62
  stdio: 'inherit',
@@ -6,6 +6,7 @@ import { getRootJson } from '../loadFromRoot.js';
6
6
  const WorkSpaceDirectory = '${dir}';
7
7
 
8
8
  export function executeCommandsIfWorkspaceAction(action, commands = []) {
9
+ console.log('we here');
9
10
  console.log('we here');
10
11
  const result = execSync('yarn workspaces list --json', { encoding: 'utf8' })
11
12
  .trim()
package/lib/index.js CHANGED
@@ -22,6 +22,7 @@ const workspacemap = config.workspace?.packageMaps || {};
22
22
  const preactions = config.workspace?.preactions || [];
23
23
 
24
24
  program.on('command:*', (operands) => {
25
+ console.log('operands command:', operands.join(' '));
25
26
  const [cmd] = operands; // e.g. "destroy3"
26
27
  const raw = program.rawArgs.slice(2); // after `node script.js`
27
28
  const i = raw.indexOf(cmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.55",
3
+ "version": "0.0.57",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",