Skip to content

Commit

Permalink
chore(deps): update commander import
Browse files Browse the repository at this point in the history
  • Loading branch information
kennylam committed Dec 18, 2023
1 parent f37bcf6 commit 1718bf0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/carbon-web-components/gulp-tasks/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

const path = require('path');
const program = require('commander');
const { program } = require('commander');

const collect = (v, a) => a.add(v);

Expand Down
2 changes: 1 addition & 1 deletion packages/services/gulp-tasks/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'use strict';

const path = require('path');
const program = require('commander');
const { program } = require('commander');

const collect = (v, a) => a.add(v);

Expand Down
2 changes: 1 addition & 1 deletion tasks/deploy_preview_comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'use strict';

const https = require('https');
const program = require('commander');
const { program } = require('commander');

program
.option('-t, --token <github token>', 'Github Token')
Expand Down
2 changes: 1 addition & 1 deletion tasks/get-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'use strict';

const child = require('child_process');
const program = require('commander');
const { program } = require('commander');

program
.option('-f, --tagFrom <git tag from>', 'Git tag range from')
Expand Down

0 comments on commit 1718bf0

Please sign in to comment.