├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── flow-node ├── flow-remove-types ├── index.js ├── package.json ├── publish-npm-alias.sh ├── register.js ├── test-update.sh ├── test.sh └── test ├── expected-pretty-inlinemap.js ├── expected-pretty.js ├── expected-with-maps └── test │ ├── source.js │ └── source.js.map ├── expected.js ├── source.js ├── test-node-module.js └── without-flow.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | /npm-alias 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/README.md -------------------------------------------------------------------------------- /flow-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/flow-node -------------------------------------------------------------------------------- /flow-remove-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/flow-remove-types -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/package.json -------------------------------------------------------------------------------- /publish-npm-alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/publish-npm-alias.sh -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/register.js -------------------------------------------------------------------------------- /test-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test-update.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test.sh -------------------------------------------------------------------------------- /test/expected-pretty-inlinemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/expected-pretty-inlinemap.js -------------------------------------------------------------------------------- /test/expected-pretty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/expected-pretty.js -------------------------------------------------------------------------------- /test/expected-with-maps/test/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/expected-with-maps/test/source.js -------------------------------------------------------------------------------- /test/expected-with-maps/test/source.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/expected-with-maps/test/source.js.map -------------------------------------------------------------------------------- /test/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/expected.js -------------------------------------------------------------------------------- /test/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/source.js -------------------------------------------------------------------------------- /test/test-node-module.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | var n: number = 42; 4 | console.log(n); 5 | -------------------------------------------------------------------------------- /test/without-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/flow-remove-types/HEAD/test/without-flow.js --------------------------------------------------------------------------------