0.0.2 • Published 10 years ago

gulp-absurd v0.0.2

Weekly downloads
14
License
-
Repository
github
Last release
10 years ago

gulp-absurd

Build Status

Information

Install

npm install gulp-absurd

Usage

var gulp = require('gulp');
var absurd = require('./gulp-absurd');

gulp.task('default', function() {
	gulp.src('./data/*.js')
	.pipe(absurd({
		minify: true
	}))
	.pipe(gulp.dest('./result'));
});

Options

The object which is sent to the module is directly passed to AbsurdJS. So, for more information about the specific options check https://github.com/krasimir/absurd

Tests

> npm install -g mocha
> mocha