Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

are-we-flow-yet

tmcw26ISC1.1.1

determine what percentage of a project is flow annotated

flow, yet

readme

are we flow yet

Circle CI Greenkeeper badge

A CLI tool that scans a source directory and gives statistics and a big list of files that are and are not flow-annotated.

This works by scanning the first 100 characters of each file and finding /* @flow */ or // @flow comments.

install

npm install -g are-we-flow-yet

usage

are-we-flow-yet src

example

~/src/app〉../are-we-flow-yet/are-we-flow-yet src
flow files 123
non flow files 200
src/account_components/apps/index.js
src/account_components/tokens/token_modal.js
src/admin_components/index.js
src/admin_components/orders/edit.js
...

changelog

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.1.1 (2018-08-23)

Bug Fixes

  • Fix stateful regex problem. (7647387)

1.1.0 (2018-08-19)

Bug Fixes

  • package: update tap to version 11.0.0 (2aa3d05)
  • package: update tap to version 12.0.0 (5c9afe8)

Features

  • Allow to use // [@flow](https://github.com/flow) as flow pragma (34dc521)