This page is still under construction and may be out of date
Usage
Arguments
One or more patterns to match when searching for input files in the working directory.Always wrap your glob patterns in quotes (e.g. "src/**/*.ts") to prevent your shell from expanding them prematurely.
Single patternccmd run --input "packages/**/generated/*.ts" --command "yarn codegen"
Multiple patternsccmd run --input "packages/**/generated/*.ts" "apps/**/generated/*.ts" --command "yarn codegen"
Working directory to use. Defaults to your current directory if not provided.