Skip to content

Commit

Permalink
chore: Bump version to 0.1.8 and fix config option in deploy command
Browse files Browse the repository at this point in the history
  • Loading branch information
longlongago2 committed Aug 27, 2024
1 parent 758be30 commit f8a1d35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nebulae-cli/deploy",
"version": "0.1.7",
"version": "0.1.8",
"description": "Command line tools for deploying",
"private": false,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function initCommands(): void {
.name('deploy')
.description('CLI for deploy project to server | CLI 部署工具')
.version(pkg.version ?? '0.0.0')
.option('-c, --config', 'config file path')
.option('-c, --config <config>', 'config file path')
.action(async (argv: Partial<DeployArgv>) => {
try {
const { config: configFilePath } = argv;
Expand Down

0 comments on commit f8a1d35

Please sign in to comment.