@getmonoceros/workbench 1.9.2 → 1.9.3

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.
package/dist/bin.js CHANGED
@@ -4428,7 +4428,7 @@ async function persistPromptedIdentity(prompted, ymlPath, home, logger) {
4428
4428
  }
4429
4429
 
4430
4430
  // src/version.ts
4431
- var CLI_VERSION = true ? "1.9.2" : "dev";
4431
+ var CLI_VERSION = true ? "1.9.3" : "dev";
4432
4432
 
4433
4433
  // src/commands/_dispatch.ts
4434
4434
  import { consola as consola12 } from "consola";
@@ -4874,7 +4874,7 @@ async function listFeatureOptionInnerArgs(ctx) {
4874
4874
  }
4875
4875
  return [];
4876
4876
  }
4877
- return summary.optionNames.filter((n) => !usedKeys.has(n));
4877
+ return summary.optionNames.filter((n) => !usedKeys.has(n)).map((n) => `${n}=`);
4878
4878
  }
4879
4879
  async function resolveFeatureRefForCompletion(token) {
4880
4880
  if (REGEX.featureRef.test(token)) return token;