@h3ravel/musket 0.1.2 → 0.1.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/index.cjs CHANGED
@@ -800,7 +800,7 @@ var Musket = class Musket {
800
800
  //#endregion
801
801
  //#region package.json
802
802
  var name = "@h3ravel/musket";
803
- var version = "0.1.2";
803
+ var version = "0.1.3";
804
804
  var 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.";
805
805
  var type = "module";
806
806
  var exports$1 = {
@@ -926,7 +926,7 @@ var Kernel = class Kernel {
926
926
  }
927
927
  async loadRequirements() {
928
928
  this.cwd = node_path.default.join(process.cwd(), this.basePath);
929
- try {
929
+ if (!this.config.hideMusketInfo) try {
930
930
  package_default.name = this.config.cliName ?? package_default.name;
931
931
  this.modules.push(package_default);
932
932
  } catch {}
package/dist/index.js CHANGED
@@ -770,7 +770,7 @@ var Musket = class Musket {
770
770
  //#endregion
771
771
  //#region package.json
772
772
  var name = "@h3ravel/musket";
773
- var version = "0.1.2";
773
+ var version = "0.1.3";
774
774
  var 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.";
775
775
  var type = "module";
776
776
  var exports = {
@@ -896,7 +896,7 @@ var Kernel = class Kernel {
896
896
  }
897
897
  async loadRequirements() {
898
898
  this.cwd = path.join(process.cwd(), this.basePath);
899
- try {
899
+ if (!this.config.hideMusketInfo) try {
900
900
  package_default.name = this.config.cliName ?? package_default.name;
901
901
  this.modules.push(package_default);
902
902
  } catch {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/musket",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
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
  "exports": {