@h3ravel/musket 0.5.4 → 0.6.0
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 +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,7 @@ You can also initialize **Musket CLI** with precise controls
|
|
|
79
79
|
|
|
80
80
|
```ts
|
|
81
81
|
import { Kernel } from 'h3ravel/musket';
|
|
82
|
+
import { TestCommand } from './TestCommand';
|
|
82
83
|
|
|
83
84
|
const app = new Application();
|
|
84
85
|
|
|
@@ -92,6 +93,7 @@ const instance = new Kernel(app)
|
|
|
92
93
|
{ name: '@h3ravel/shared', alias: 'Shared PKG' },
|
|
93
94
|
'@h3ravel/support',
|
|
94
95
|
])
|
|
96
|
+
.registerCommands([TestCommand])
|
|
95
97
|
.bootstrap();
|
|
96
98
|
|
|
97
99
|
return await instance.run();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/musket",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
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",
|