gulp-jsonschema-deref

0.0.3 • Public • Published

gulp-jsonschema-deref

Build Status Dependencies Inline docs npm License

Gulp plugin to resolve $ref references (local+file+http) and bundle into a single json schema

Install

$ npm install --save-dev gulp-jsonschema-deref

Usage

var gulp = require('gulp');
var jsonschemaDeref = require('gulp-jsonschema-deref');
 
var schemaFiles = '*.schema.json',
    definitionsFiles = 'definitions/' + schemaFiles, // (optional)
    buildFolder = 'build';
 
gulp.task('resolve-schema', function() {
    var stream = gulp.src( schemaFiles )
        .pipe( jsonschemaDeref() )
        .pipe( gulp.dest(buildFolder) );
    return stream;
});
 
 
gulp.task('watch-schema', function() {
    var watcher = gulp.watch( [schemaFiles,definitionsFiles], ['resolve-schema']);
 
    watcher.on('change', function(event) {
      console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
    });
});
 
gulp.task('default', ['resolve-schema','watch-schema']);

API

Currently, dependant on json-schema-ref-parser

jsonschemaDeref([options])

options

see: dereference

License

MIT © oori

Package Sidebar

Install

npm i gulp-jsonschema-deref

Weekly Downloads

27

Version

0.0.3

License

MIT

Unpacked Size

4.62 kB

Total Files

4

Last publish

Collaborators

  • oori