gulp-ccr-config-helper

0.1.0 • Public • Published

gulp-ccr-config-helper

Configuration helper functions. A cascading configurable gulp recipe for gulp-chef.

Install

$ npm install --save gulp-ccr-config-helper

API

verify(schema, config)

Vaildate the config value using given JSON schema.

Example

var verify = require('gulp-ccr-config-helper');
 
var schema = {
    title: 'my-plugin',
    description: 'my-plugin description',
    type: 'object'
    properties: {
        options: {
            type: 'object'
        }
    },
    required: ['options']
};
 
module.exports = function (done) {
    verify(schema, this.config);
    done();
};
module.exports.schema = schema;
module.exports.type = 'task';

Package Sidebar

Install

npm i gulp-ccr-config-helper

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • amobiz