Add --filter and --help info.

This commit is contained in:
Bauke 2022-03-11 18:29:06 +01:00
parent 5e13c0fa76
commit 59a6f59542
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,12 @@ pnpm start -- --no-render
# parameters for GEGL operations.
pnpm start -- --include-defaults
# Run only the projects starting with a given name.
pnpm start -- --filter 2022-03
# See all the other options.
pnpm start -- --help
# Lint the code and run tests.
pnpm test
```

View File

@ -19,6 +19,7 @@ async function main(): Promise<void> {
const cli = meow(
`
Options
--filter <name> Only render projects starting with <name>.
--include-defaults Include default GEGL operation parameters.
--no-render Don't render any images.
`,