0.0.3 • Published 6 years ago

gulp-jsonschema-deref v0.0.3

Weekly downloads
211
License
MIT
Repository
github
Last release
6 years ago

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