@mono-labs/cli 0.0.77 → 0.0.78

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.
@@ -21,6 +21,7 @@ export function runBackground(
21
21
 
22
22
  // Replace ${field} tokens in env values using dataLayer
23
23
  console.log('envObj:', envObj);
24
+ console.log('backgroundOptions', options);
24
25
  const expandedEnv = createdExpandedEnv(envObj);
25
26
 
26
27
  // Replace in command string
@@ -9,6 +9,7 @@ const TOKEN_RX = /\{out:(?<field>[^\s}]+)\s+(?<value>[^\s}]+)\}/g;
9
9
  * of the form {out:field value} and stores them in the shared dataLayer.
10
10
  */
11
11
  export function runForeground(cmd, envObj = {}, options = {}) {
12
+ console.log('optionsForeground:', options);
12
13
  return new Promise((resolve, reject) => {
13
14
  let lastLine = '';
14
15
  let buffer = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",