We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758be30 commit f8a1d35Copy full SHA for f8a1d35
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@nebulae-cli/deploy",
3
- "version": "0.1.7",
+ "version": "0.1.8",
4
"description": "Command line tools for deploying",
5
"private": false,
6
"type": "module",
src/commands/index.ts
@@ -66,7 +66,7 @@ export function initCommands(): void {
66
.name('deploy')
67
.description('CLI for deploy project to server | CLI 部署工具')
68
.version(pkg.version ?? '0.0.0')
69
- .option('-c, --config', 'config file path')
+ .option('-c, --config <config>', 'config file path')
70
.action(async (argv: Partial<DeployArgv>) => {
71
try {
72
const { config: configFilePath } = argv;
0 commit comments