0.0.4 • Published 9 years ago

gulp-jsdecorator v0.0.4

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

Gulp Decorator Gulp plugin

Simple JavaScript Decorator Gulp Plugin. ###Installation   npm version

npm install gulp-jsdecorator

###Simple Usage

var decorator = require("gulp-jsdecorator");

/**
 * Build JS
 */
gulp.task('js', function () {
  gulp.src(['./src/**/*.js'])
    .pipe(decorator({}))
    .pipe(gulp.dest('./dist/'));
});