├── .babelrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __fixtures__ ├── cat └── dog ├── __tests__ ├── cli.js └── index.js ├── bin └── run-when ├── demo ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif └── 6.gif ├── flow-typed └── npm │ ├── babel-plugin-transform-flow-strip-types_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── flow-remove-types_vx.x.x.js │ ├── flow-typed_vx.x.x.js │ ├── jest_v20.x.x.js │ ├── jest_vx.x.x.js │ └── multimatch_vx.x.x.js ├── package.json ├── src └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-flow-strip-types"] 3 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.4.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/README.md -------------------------------------------------------------------------------- /__fixtures__/cat: -------------------------------------------------------------------------------- 1 | :( 2 | -------------------------------------------------------------------------------- /__fixtures__/dog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/__tests__/cli.js -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /bin/run-when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/bin/run-when -------------------------------------------------------------------------------- /demo/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/1.gif -------------------------------------------------------------------------------- /demo/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/2.gif -------------------------------------------------------------------------------- /demo/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/3.gif -------------------------------------------------------------------------------- /demo/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/4.gif -------------------------------------------------------------------------------- /demo/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/5.gif -------------------------------------------------------------------------------- /demo/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/demo/6.gif -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-remove-types_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/flow-remove-types_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-typed_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/flow-typed_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/jest_v20.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/jest_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/multimatch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/flow-typed/npm/multimatch_vx.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/run-when/HEAD/yarn.lock --------------------------------------------------------------------------------