2.2.0 • Published 10 years ago

flowify v2.2.0

Weekly downloads
67
License
MIT
Repository
github
Last release
10 years ago

flowify

The easiest way to introduce flow type annotation through browserify.

npm install --save-dev \
    flowify \
    babel-plugin-typecheck \
    babel-plugin-syntax-flow \
    babel-plugin-transform-flow-strip-types
// basic grunt example
grunt.initConfig({
    browserify: {
        options: {
            transform: ['flowify', 'hintify', 'babelify']
        }
    }
});