0.1.0 • Published 10 years ago

gulp-js-prettify v0.1.0

Weekly downloads
93
License
-
Repository
github
Last release
10 years ago

Prettify JavaScript with js-beautify.

Getting Started

Install the module with: npm install gulp-js-prettify

Usage

var gulp = require('gulp');
var prettify = require('gulp-prettify');

gulp.task('prettify', function() {
  gulp.src('./src/foo.js')
    .pipe(prettify({collapseWhitespace: true}))
    .pipe(gulp.dest('./src')) // edit in place
});

See the js-beautify docs for options.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.

Authors

License

Copyright (c) 2014 David McNamara, Jon Schlinkert Licensed under the MIT license.