Bump commander to version 9.1.0

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-04-04 15:19:21 +02:00
parent e9b48b20c9
commit 344ea56acc
53 changed files with 309 additions and 285 deletions
+1 -1
View File
@@ -35,7 +35,7 @@
"@types/node": "^16.11.26",
"@types/puppeteer": "^5.4.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
"commander": "^9.1.0",
"cross-fetch": "^3.1.5",
"fs-extra": "10.0.1",
"handlebars": "^4.7.3",
+2 -2
View File
@@ -14,9 +14,9 @@
* limitations under the License.
*/
import { CommanderStatic } from 'commander';
import { Command } from 'commander';
import { run } from './run';
export function registerCommands(program: CommanderStatic) {
export function registerCommands(program: Command) {
program.command('run').description('Run e2e tests').action(run);
}
+1 -1
View File
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import program from 'commander';
import { program } from 'commander';
import chalk from 'chalk';
import { registerCommands } from './commands';
import { version } from '../package.json';