Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.06 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.06 KB

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())
    .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