gulp-ccr-config-helper
v0.1.0
Published
Configuration helper functions. A cascading configurable gulp recipe for gulp-chef.
Downloads
11
Maintainers
Readme
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';