@mono-labs/cli 0.0.164 → 0.0.165

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.
@@ -58,7 +58,7 @@ export function buildCommands(files) {
58
58
  const argSpec = required ? `<${type}>` : `[${type}]`;
59
59
  current = current.argument(argSpec, argInfo.description || '');
60
60
  }
61
- console.log('configObject:', JSON.stringify(configObject, null, 2));
61
+ console.log('firstConfigObject:', JSON.stringify(configObject, null, 2));
62
62
 
63
63
  // Options
64
64
  Object.entries(optionsData).forEach(([optionKey, meta]) => {
@@ -77,8 +77,8 @@ export async function runHasteCommand(configObject, options = {}) {
77
77
 
78
78
  console.log(`→ foreground action (attached): ${fg}`);
79
79
  console.log('options:', options);
80
- console.log('configObject:', JSON.stringify(configObject, null, 2));
81
- console.log('config', JSON.stringify(config.options || {}, null, 2));
80
+ console.log('secondConfigObject:', JSON.stringify(configObject, null, 2));
81
+ console.log('config', JSON.stringify(configObject.options || {}, null, 2));
82
82
 
83
83
  try {
84
84
  await runBackground(fg, envObj, options, true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.164",
3
+ "version": "0.0.165",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",