gobble-jsbeautify
v0.1.0
Published
Beautify JavaScript files with gobble and jsbeautifier
Downloads
21
Readme
gobble-jsbeautify
Beautify JavaScript files with gobble and js-beautify.
Installation
First, you need to have gobble installed - see the gobble readme for details. Then,
npm i -D gobble-jsbeautify
Usage
gobblefile.js
var gobble = require( 'gobble' );
module.exports = gobble( 'uglycode' ).map( 'jsbeautify', jsBeautifyOptions );
The js-beautify options are as per the documentation.
Source code
module.exports = jsbeautify;
function jsbeautify ( code, options ) {
return require( 'js-beautify' ).js_beautify( code, options );
}
jsbeautify.defaults = {
accept: '.js'
};
License
MIT. Copyright 2014 Rich Harris