@h3ravel/musket 2.2.2 → 2.2.5

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/index.cjs CHANGED
@@ -346,6 +346,7 @@ var Command = class {
346
346
  * @returns
347
347
  */
348
348
  setOption(key, value) {
349
+ this.input.options[key] = value;
349
350
  this.program.setOptionValue(key, value);
350
351
  return this;
351
352
  }
package/dist/index.js CHANGED
@@ -322,6 +322,7 @@ var Command = class {
322
322
  * @returns
323
323
  */
324
324
  setOption(key, value) {
325
+ this.input.options[key] = value;
325
326
  this.program.setOptionValue(key, value);
326
327
  return this;
327
328
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/musket",
3
- "version": "2.2.2",
3
+ "version": "2.2.5",
4
4
  "description": "Musket CLI is a framework-agnostic CLI framework designed to allow you build artisan-like CLI apps and for use in the H3ravel framework.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -66,7 +66,7 @@
66
66
  "vitest": "^4.1.8"
67
67
  },
68
68
  "dependencies": {
69
- "@h3ravel/shared": "^2.2.4",
69
+ "@h3ravel/shared": "^2.2.5",
70
70
  "chalk": "^5.6.2",
71
71
  "commander": "^14.0.1",
72
72
  "dayjs": "^1.11.18",