Package Exports
- gulp-react
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-react) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-react 
Deprecated in favor of gulp-babel. Read more.
Precompile React JSX templates into JavaScript
Issues with the output should be reported on the React issue tracker.
Install
$ npm install --save-dev gulp-react
Usage
var gulp = require('gulp');
var react = require('gulp-react');
gulp.task('default', function () {
return gulp.src('template.jsx')
.pipe(react())
.pipe(gulp.dest('dist'));
});
API
react([options])
See the react-tools
options, except for sourceMap
and sourceFilename
, which are handled for you.
Source Maps
Use gulp-sourcemaps like this:
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var react = require('gulp-react');
gulp.task('default', function () {
return gulp.src('template.jsx')
.pipe(sourcemaps.init())
.pipe(react())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('dist'));
});
License
MIT © Sindre Sorhus