├── .gitignore ├── .jshintrc ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── invalid.js ├── main.es6-custom.jsx ├── main.es6-target-es5.jsx ├── main.es6.jsx ├── main.js ├── main.jsnox ├── main.jsx ├── main.strip-types-es6.jsx ├── main.strip-types.js ├── simple.js └── utf8.js └── reactify.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/invalid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/invalid.js -------------------------------------------------------------------------------- /test/fixtures/main.es6-custom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/main.es6-custom.jsx -------------------------------------------------------------------------------- /test/fixtures/main.es6-target-es5.jsx: -------------------------------------------------------------------------------- 1 | class Foo { 2 | get bar() {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/main.es6.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/main.es6.jsx -------------------------------------------------------------------------------- /test/fixtures/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/main.js -------------------------------------------------------------------------------- /test/fixtures/main.jsnox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/main.jsnox -------------------------------------------------------------------------------- /test/fixtures/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/main.jsx -------------------------------------------------------------------------------- /test/fixtures/main.strip-types-es6.jsx: -------------------------------------------------------------------------------- 1 | class Foo { 2 | bar(x: string) {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/main.strip-types.js: -------------------------------------------------------------------------------- 1 | var x: Number = 1; 2 | 3 | function y(param: A): B { 4 | return 1; 5 | } 6 | -------------------------------------------------------------------------------- /test/fixtures/simple.js: -------------------------------------------------------------------------------- 1 | require('./main.jsx'); 2 | 3 | 1 + 1; 4 | -------------------------------------------------------------------------------- /test/fixtures/utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/fixtures/utf8.js -------------------------------------------------------------------------------- /test/reactify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/reactify/HEAD/test/reactify.js --------------------------------------------------------------------------------