Skip to content

Commit

Permalink
Merge pull request #73 from leanix/renovate/commander-12.x
Browse files Browse the repository at this point in the history
Update dependency commander to v12
  • Loading branch information
ama-leanix committed Mar 26, 2024
2 parents 4584292 + 9074bb8 commit ae5362b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -53,7 +53,7 @@
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"commander": "^12.0.0",
"cross-spawn": "^5.1.0",
"ejs": "^3.1.9",
"inquirer": "^7.3.3",
Expand Down
4 changes: 3 additions & 1 deletion src/app.ts
@@ -1,5 +1,5 @@
import * as chalk from 'chalk';
import * as program from 'commander';
import { Command } from 'commander';
import { Builder } from './builder';
import { Bundler } from './bundler';
import { DevStarter } from './dev-starter';
Expand All @@ -8,6 +8,8 @@ import { Initializer } from './initializer';
import { Uploader } from './uploader';
import { version } from './version';

const program = new Command();

program.version(version);

program
Expand Down

0 comments on commit ae5362b

Please sign in to comment.