Skip to content

Commit

Permalink
Merge pull request #68 from ytetsuro/fix/#67/command-example
Browse files Browse the repository at this point in the history
Fix command example for exclude option.
  • Loading branch information
ytetsuro authored Jan 31, 2021
2 parents 665f97f + 4f45ce8 commit 2326bdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ OPTIONS
-h, --help show CLI help
-o, --outputReportDir=outputReportDir output report directory path. default: ./sabik_report
-v, --version show CLI version
--excludes=excludes exclude patterns is separated by a comma. example: *.test.ts,*.spec.ts
--excludes=excludes exclude patterns is separated by a comma. example: .test.ts$,.spec.ts$
--matches=matches match patterns. example: .ts$
```

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Sabik extends Command {
}),
excludes: flags.string({
description:
'exclude patterns is separated by a comma. example: *.test.ts,*.spec.ts',
'exclude patterns is separated by a comma. example: .test.ts$,.spec.ts$',
}),
matches: flags.string({ description: 'match patterns. example: .ts$' }),
};
Expand Down

0 comments on commit 2326bdd

Please sign in to comment.