Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/akiran/gulp-jsxformat
- Owner: akiran
- License: mit
- Created: 2015-03-01T05:25:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-01T07:14:58.000Z (almost 10 years ago)
- Last Synced: 2024-11-18T21:02:15.791Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'))
})
```