Check types using Flow.
$ yarn add --dev @start/plugin-lib-flow-check
# or
$ npm install --save-dev @start/plugin-lib-flow-check
flowGenerate(outDirRelative: string, ...flowArgs: string[])
import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import flowGenerate from '@start/plugin-lib-flow-generate'
export task = () =>
sequence(
find('src/**/*.js'),
flowGenerate('build/')
)