@h3ravel/musket 0.1.7 → 0.1.9
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/README.md +5 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<a href="https://h3ravel.toneflix.net" target="_blank">
|
|
3
3
|
<img src="https://raw.githubusercontent.com/h3ravel/assets/refs/heads/main/logo-full.svg" width="200" alt="H3ravel Logo">
|
|
4
4
|
</a>
|
|
5
|
-
<h1 align="center"><a href="https://h3ravel.toneflix.net/
|
|
5
|
+
<h1 align="center"><a href="https://h3ravel.toneflix.net/musket">Musket CLI</a></h1>
|
|
6
6
|
|
|
7
7
|
[![Framework][ix]][lx]
|
|
8
8
|
[![Musket Version][i1]][l1]
|
|
@@ -73,6 +73,10 @@ Kernel.init(app, {
|
|
|
73
73
|
});
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
+
## Documentation
|
|
77
|
+
|
|
78
|
+
The full musket documentation is available [Here](https://h3ravel.toneflix.net/musket)
|
|
79
|
+
|
|
76
80
|
## Contributing
|
|
77
81
|
|
|
78
82
|
Thank you for considering contributing to the H3ravel framework! The [Contribution Guide](https://h3ravel.toneflix.net/contributing) can be found in the H3ravel documentation and will provide you with all the information you need to get started.
|
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.
|
|
803
|
+
var version = "0.1.8";
|
|
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 = {
|
package/dist/index.d.cts
CHANGED
|
@@ -82,10 +82,10 @@ interface InitConfig {
|
|
|
82
82
|
/**
|
|
83
83
|
* Packages that should show up up when the `-V` flag is passed
|
|
84
84
|
*/
|
|
85
|
-
packages?: string
|
|
85
|
+
packages?: (string | {
|
|
86
86
|
name: string;
|
|
87
87
|
alias: string;
|
|
88
|
-
}[];
|
|
88
|
+
})[];
|
|
89
89
|
/**
|
|
90
90
|
* If set to true, information about musket CLI like name and
|
|
91
91
|
* version info will not be unexpectedly shown in console
|
package/dist/index.d.ts
CHANGED
|
@@ -82,10 +82,10 @@ interface InitConfig {
|
|
|
82
82
|
/**
|
|
83
83
|
* Packages that should show up up when the `-V` flag is passed
|
|
84
84
|
*/
|
|
85
|
-
packages?: string
|
|
85
|
+
packages?: (string | {
|
|
86
86
|
name: string;
|
|
87
87
|
alias: string;
|
|
88
|
-
}[];
|
|
88
|
+
})[];
|
|
89
89
|
/**
|
|
90
90
|
* If set to true, information about musket CLI like name and
|
|
91
91
|
* version info will not be unexpectedly shown in console
|
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.
|
|
773
|
+
var version = "0.1.8";
|
|
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 = {
|
package/package.json
CHANGED