gulp-ccr-config-helper

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

Usage no npm install needed!

<script type="module">
  import gulpCcrConfigHelper from 'https://cdn.skypack.dev/gulp-ccr-config-helper';
</script>

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';