Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akiran/gulp-jsxformat

prettify jsx with gulp
https://github.com/akiran/gulp-jsxformat

Last synced: about 1 month ago
JSON representation

prettify jsx with gulp

Awesome Lists containing this project

README

        

# gulp-jsxformat
jsx formatting with gulp

## Install
```bash
npm install gulp-jsxformat --save-dev
```

## Usage
```js
var gulp = require('gulp');
var jsxformat = require('gulp-jsxformat');

gulp.task('prettify-jsx', function () {
gulp.src('src/**/*.jsx')
.pipe(jsxformat())
.pipe(gulp.dest('src'))
})
```