gulp-component-updater

0.0.2 • Public • Published

Gulp Component.json Updater

Gulp-friendly module to auto add/delete files in your component.json

In a large project in can be annoying to manually add every new file created to component.json. This module can be used with Gulp to automatically add/remove files from your component.json.

Install

$ npm install component-json-updater --save-dev

Usage

var gulp = require('gulp'),
    updater = require('gulp-component-updater')
 
gulp.task('watch', function () {
    gulp.watch(
        ['component.json', 'src/**/*'],
        updater({ log: true })
    )
})

API

updater([component.json path], [options])

Component.json path

Optional. Defaults to component.json

Options

Optional. Default options:

{
    styles: ['css', 'styl', 'sass', 'less'],
    scripts: ['js', 'coffee'],
    templates: ['html', 'jade', 'mustache', 'handlebars'],
    images: ['jpg', 'png', 'gif'],
    files: [],
    log: false, // console.log file changes
    indent: 2 // indent spaces in component.json
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i gulp-component-updater

      Weekly Downloads

      1

      Version

      0.0.2

      License

      MIT

      Last publish

      Collaborators

      • yyx990803