@mono-labs/cli 0.0.55 → 0.0.56
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()
|