gulp-typescript-schema
v0.1.0
Published
Gulp tasks for typescript-schema
Downloads
1
Maintainers
Readme
gulp-typescript-schema
Overview
Gulp tasks for typescript-schema. Allows schema generation as a gulp task.
Usage
Install:
npm install gulp-typescript-schema
Basic Usage:
var gulp = require('gulp')
var generateSchema = require('gulp-typescript-schema').generateSchema
gulp.task('generateSchema', function(){
gulp.src('lib/**/*.ts').pipe(generateSchema({
path: './schema.json'
})).pipe(gulp.dest('schemas'))
})