gobble-jsbeautify

0.1.0 • Public • Published

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

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i gobble-jsbeautify

    Weekly Downloads

    0

    Version

    0.1.0

    License

    none

    Last publish

    Collaborators

    • rich_harris