@vroskus/bump-flow-coverage-threshold

1.0.2 • Public • Published

@vroskus/bump-flow-coverage-threshold

Tool for bumping flow static type check coverage threshold value in package.json.

Installation

Call:

npm install -D @vroskus/bump-flow-coverage-threshold

yarn add -D @vroskus/bump-flow-coverage-threshold

Usage

  1. Make sure that you have run flow-coverage-report and it has generated a "json" type report into coverage output directory. Here is a configuration example:
// package.json
...
  "flow-coverage-report": {
    "threshold": 10,
    "outputDir": "coverage",
    "reportTypes": [
      "json"
    ]
  },
...
  1. Call bump-flow-coverage-threshold after running flow check, for example:
// package.json
...
  "scripts": {
    "flow": "flow-coverage-report",
    "postflow": "bump-flow-coverage-threshold"
  }
...

When the tool is called, it finds coverage information, compares new value with the stored threshold value in the package.json, and updates it if the new value is greater then the stored one.

/@vroskus/bump-flow-coverage-threshold/

    Package Sidebar

    Install

    npm i @vroskus/bump-flow-coverage-threshold

    Weekly Downloads

    1

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    4.72 kB

    Total Files

    4

    Last publish

    Collaborators

    • vroskus