gulp-jsx

Transpile JSX in gulp streams.

Usage no npm install needed!

<script type="module">
  import gulpJsx from 'https://cdn.skypack.dev/gulp-jsx';
</script>

README

gulp-jsx Build Status NPM version Dependency Status

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.

BSD Licensed