├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── babel.js ├── cli.js ├── commands │ ├── compile.js │ ├── index.js │ └── type-check.js ├── logger.js └── run.js ├── test └── .fixtures │ ├── failing-type-check │ └── index.js │ └── simple │ └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/package.json -------------------------------------------------------------------------------- /src/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/babel.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/commands/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/commands/compile.js -------------------------------------------------------------------------------- /src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/commands/index.js -------------------------------------------------------------------------------- /src/commands/type-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/commands/type-check.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/src/run.js -------------------------------------------------------------------------------- /test/.fixtures/failing-type-check/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/test/.fixtures/failing-type-check/index.js -------------------------------------------------------------------------------- /test/.fixtures/simple/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/test/.fixtures/simple/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andywer/gear/HEAD/yarn.lock --------------------------------------------------------------------------------