├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── lib └── transformers.js ├── main.js ├── package.json ├── tasks └── react.js └── test ├── browserify_test.js ├── expected ├── browserify ├── default_options ├── extension_option ├── multiple_jsx_files └── vanilla_js ├── fixtures ├── browserify │ └── module.jsx ├── js │ ├── fixture-jsx.js │ └── fixture.js └── jsx │ ├── fixture.jsx │ └── nested │ └── fixture-js.jsx ├── react_test.js └── transformers_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/README.md -------------------------------------------------------------------------------- /lib/transformers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/lib/transformers.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/package.json -------------------------------------------------------------------------------- /tasks/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/tasks/react.js -------------------------------------------------------------------------------- /test/browserify_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/browserify_test.js -------------------------------------------------------------------------------- /test/expected/browserify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/expected/browserify -------------------------------------------------------------------------------- /test/expected/default_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/expected/default_options -------------------------------------------------------------------------------- /test/expected/extension_option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/expected/extension_option -------------------------------------------------------------------------------- /test/expected/multiple_jsx_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/expected/multiple_jsx_files -------------------------------------------------------------------------------- /test/expected/vanilla_js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/expected/vanilla_js -------------------------------------------------------------------------------- /test/fixtures/browserify/module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/fixtures/browserify/module.jsx -------------------------------------------------------------------------------- /test/fixtures/js/fixture-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/fixtures/js/fixture-jsx.js -------------------------------------------------------------------------------- /test/fixtures/js/fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/fixtures/js/fixture.js -------------------------------------------------------------------------------- /test/fixtures/jsx/fixture.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/fixtures/jsx/fixture.jsx -------------------------------------------------------------------------------- /test/fixtures/jsx/nested/fixture-js.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/fixtures/jsx/nested/fixture-js.jsx -------------------------------------------------------------------------------- /test/react_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/react_test.js -------------------------------------------------------------------------------- /test/transformers_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-react/HEAD/test/transformers_test.js --------------------------------------------------------------------------------