Add --filter and --help info.
This commit is contained in:
parent
5e13c0fa76
commit
59a6f59542
|
@ -30,6 +30,12 @@ pnpm start -- --no-render
|
||||||
# parameters for GEGL operations.
|
# parameters for GEGL operations.
|
||||||
pnpm start -- --include-defaults
|
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.
|
# Lint the code and run tests.
|
||||||
pnpm test
|
pnpm test
|
||||||
```
|
```
|
||||||
|
|
|
@ -19,6 +19,7 @@ async function main(): Promise<void> {
|
||||||
const cli = meow(
|
const cli = meow(
|
||||||
`
|
`
|
||||||
Options
|
Options
|
||||||
|
--filter <name> Only render projects starting with <name>.
|
||||||
--include-defaults Include default GEGL operation parameters.
|
--include-defaults Include default GEGL operation parameters.
|
||||||
--no-render Don't render any images.
|
--no-render Don't render any images.
|
||||||
`,
|
`,
|
||||||
|
|
Loading…
Reference in New Issue