0.5.8 • Published 10 years ago

gulp-rigger v0.5.8

Weekly downloads
1,070
License
-
Repository
github
Last release
10 years ago

gulp-rigger

Rigger is a build time include engine for Javascript, CSS, CoffeeScript and in general any type of text file that you wish to might want to "include" other files into.

Install

Install with npm.

npm install --save-dev gulp-rigger

Examples

var gulp = require('gulp');
var rigger = require('gulp-rigger');

gulp.task('default', function () {
	gulp.src('app/*.js')
		.pipe(rigger())
		.pipe(gulp.dest('build/'));
});