@mono-labs/cli 0.0.31 → 0.0.32

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -38,7 +38,7 @@ program.on('command:*', (operands) => {
38
38
  console.log('Rest is empty or starts with flags, inserting DEFAULT_SCRIPT');
39
39
  // Prefer an explicit script name; if you want to always use `run`, do:
40
40
  // rest = ['run', DEFAULT_SCRIPT, ...rest];
41
- rest = [DEFAULT_SCRIPT, ...rest]; // yarn workspace <ws> dev --flags
41
+ rest = ['', ...rest]; // yarn workspace <ws> dev --flags
42
42
  console.log('Rest after inserting DEFAULT_SCRIPT:', rest);
43
43
  }
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",