0.1.0 • Published 9 years ago

gulp-typescript-schema v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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'))
})