Skip to content

mackers/gulp-js-prettify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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-js-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.

About

Prettify HTML.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 69.2%
  • JavaScript 30.8%