@mono-labs/cli 0.0.67 → 0.0.68

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.
@@ -19,6 +19,13 @@ export async function runHasteCommand(configObject, options = {}) {
19
19
  const preactions = configObject.preactions ?? [];
20
20
  const actions = configObject.actions ?? [];
21
21
 
22
+ console.log(
23
+ `→ Executing haste command: ${configObject.name || 'Unnamed Command'}`
24
+ );
25
+ console.log(`→ Using AWS profile: ${awsProfile}`);
26
+ console.log(`→ Using environment: ${options.stage ? 'stage' : 'dev'}`);
27
+ console.log('→ Environment variables:', envObj);
28
+
22
29
  // Run preactions sequentially
23
30
  for (const cmd of preactions) {
24
31
  console.log(`→ preaction: ${cmd}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",