slurpjs
v0.0.1
Published
The streaming build system that pipes through a straw!
Downloads
5
Maintainers
Readme
slurp
The streaming build system that pipes through a straw!
Sample slurpfile.js
This file is just a quick sample to give you a taste of what slurp does.
var slurp = require('slurp');
var gulp = require('gulp');
var coffee = require('gulp-coffee');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var imagemin = require('gulp-imagemin');
var sourcemaps = require('gulp-sourcemaps');
var del = require('del');
var paths = {
scripts: ['client/js/**/*.coffee', '!client/external/**/*.coffee'],
images: 'client/img/**/*'
};
Want to contribute?
Anyone can help make this project better - check out the Contributing guide!