Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified cli.js
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const subCommands = new Map<string, LazyCommand<any>>([
]);

cli(process.argv.slice(2), defaultCommand, {
name: 'e18e-report',
name: 'cli',
version,
description: `${c.cyan('e18e CLI')}`,
description: `${c.cyan('e18e')}`,
subCommands
});
1 change: 1 addition & 0 deletions src/commands/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export async function run(ctx: CommandContext<typeof meta.args>) {

const files = await glob(include, {
cwd,
ignore: ['node_modules'],
absolute: true
});

Expand Down
2 changes: 1 addition & 1 deletion src/test/__snapshots__/cli.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`CLI > should display package report 1`] = `
"e18e CLI (e18e-report v0.0.1)
"e18e (cli v0.0.1)

┌ Generating report...
│
Expand Down