Package detail

gulp-esformatter

sindresorhus97MITdeprecated8.0.0

The esformatter project is no longer maintained.

Beautify JavaScript code with esformatter

gulpplugin, javascript, ecmascript, js

readme

Deprecated

The esformatter project is no longer maintained.


gulp-esformatter Build Status

Beautify JavaScript code with esformatter

Issues with the output should be reported on the esformatter issue tracker.

Install

$ npm install --save-dev gulp-esformatter

Usage

const gulp = require('gulp');
const esformatter = require('gulp-esformatter');

gulp.task('default', () =>
    gulp.src('src/app.js')
        .pipe(esformatter({indent: {value: '  '}}))
        .pipe(gulp.dest('dist'))
);

API

esformatter(options)

See the esformatter options.

Options are passed to esformatter.rc().

License

MIT © Sindre Sorhus