gulp-jsx
v2.0.1
Published
Transpile JSX in gulp streams.
Downloads
89
Readme
gulp-jsx
jsx-transform for Gulp.
Installation
npm install gulp-jsx
Usage
var gulp = require('gulp');
var jsx = require('gulp-jsx');
gulp.task('build', function() {
return gulp.src('views/**/*.js')
.pipe(jsx({
factory: 'React.createClass'
}))
.pipe(gulp.dest('dist'));
});
See jsx-transform for options and other usage information.
Options
Options are passed to jsx-transform.
options.match
Type: RegExp
or String
Default: /jsx?$/i
Only parses files with pathnames that match this value.