apeman-task-js-beautify

1.0.4 • Public • Published

apeman-task-js-beautify

Build Status Code Climate Code Coverage npm Version

Beautify code written in javascript.

Installation

$ npm install apeman-task-js-beautify --save-dev

Usage

  1. Define a task within Apemanfile.js
  2. Call the task via apeman task command.

Apemanfile.js

/** This example Apemanfile to use apeman-task-js-beautify */
 
"use strict";
 
module.exports = {
    $pkg: {/*...*/},
    $tasks: {
        // Define your own task.
        'my-task-01': require('apeman-task-js-beautify')('some/pattern/**/*.js', {
            //Options
            beautifyOptions: {
                'indent_size': 4
            }
        })
    }
};
 

Then,

$ apeman task my-task-01

Options

Key Type Default Description
ignoreError bool false ignore error
ignore string[]|string [] file patterns to ignore
beautifyOptions object {} options for js-beautify

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-task-js-beautify

Weekly Downloads

0

Version

1.0.4

License

MIT

Last publish

Collaborators

  • miyazakijunichi