Binary wrapper for Flow - A static type checker for JavaScript
npm install flow-bin> Binary wrapper for Flow - A static type checker for JavaScript
macOS (arm64), Linux (x64, arm64) and Windows (x64) binaries are currently provided.
For Yarn:
```
$ yarn add --dev flow-bin
$ yarn run flow --help
For npm, add { "scripts": { "flow": "flow" } } in package.json and run:
``
$ npm install --save-dev flow-bin
$ npm run flow --help
``
$ npm install --save flow-bin
`js
const execFile = require('child_process').execFile;
const flow = require('flow-bin');
execFile(flow, ['check'], (err, stdout) => {
console.log(stdout);
});
`
flow-bin is MIT-licensed.
1. make push VERSION=0.122.0 (use the same version as Flow)make publish
2. Publish to npm: (run npm adduser the first time to log in)
`sh``
npm pack
tar xf "flow-bin-$(node -p 'require("./package.json").version').tgz"
cd package
npm run verify