Scroll to navigation

FLOW-REMOVE-TYPES(1) User Commands FLOW-REMOVE-TYPES(1)

NAME

flow-remove-types - Turn your JavaScript with Flow

SYNOPSIS

flow-remove-types [options] [sources]

OPTIONS

Show this message
Prints the current version of flow-remove-types
Paths to ignore, Regular Expression
File extensions to transform
The file path to write transformed file to
The directory path to write transformed files within
Transform all files, not just those with a @flow comment
Remove flow types without replacing with spaces, producing prettier output but may require using source maps
Also output source map files. Optionally pass "inline"
Does not produce any output concerning successful progress.

EXAMPLES

Transform one file:

flow-remove-types --out-file output.js input.js

Transform many files:

flow-remove-types --out-dir out/ input1.js input2.js

Transform files in directory:

flow-remove-types --out-dir out/ indir/

Transform files with source maps:

flow-remove-types --out-dir out/ indir/ --sourcemaps

Transform files with inline source maps:

flow-remove-types --out-dir out/ indir/ --sourcemaps inline

Transform stdin:

cat input.js | flow-remove-types > output.js
November 2022 flow-remove-types v1.2.3