flow-remove-types - Turn your JavaScript with Flow
flow-remove-types [options] [sources]
- -h, --help
- Show this message
- -v, --version
- Prints the current version of flow-remove-types
- -i, --ignore
- Paths to ignore, Regular Expression
- -x,
--extensions
- File extensions to transform
- -o,
--out-file
- The file path to write transformed file to
- -d, --out-dir
- The directory path to write transformed files within
- -a, --all
- Transform all files, not just those with a @flow comment
- -p, --pretty
- Remove flow types without replacing with spaces, producing prettier output
but may require using source maps
- -m,
--sourcemaps
- Also output source map files. Optionally pass "inline"
- -q, --quiet
- Does not produce any output concerning successful progress.
- flow-remove-types --out-file output.js input.js
- flow-remove-types --out-dir out/ input1.js input2.js
- flow-remove-types --out-dir out/ indir/
- flow-remove-types --out-dir out/ indir/ --sourcemaps
- flow-remove-types --out-dir out/ indir/ --sourcemaps inline
- cat input.js | flow-remove-types > output.js