![Gitter](https://badges.gitter.im/Join Chat.svg)
npm install gulp-all-tasks --save-dev
You can install any plugin and this module you can convert the name to a function within gulp, For example, if you install grunt-uglify you can use it inside grunt as grunt_uglify()
- npm install gulp-uglify --save-dev
- npm install gulp-concat --save-dev
var gulp = require('gulp');
require('gulp-all-tasks')();
gulp.task('default', function(){
gulp.src('src/*.js')
.pipe(gulp_uglify())
.pipe(gulp.dest('dest'));
});
gulp.task('concat', function() {
return gulp.src('./lib/*.js')
.pipe(gulp_concat('all.js'))
.pipe(gulp.dest('./dist/'));
});
var gulp = require('gulp');
require('gulp-all-tasks')({package:'other/package/file'});
var gulp = require('gulp');
require('gulp-all-tasks')({prefix:['other-*','@*/other-*']});
var gulp = require('gulp');
require('gulp-all-tasks')({dependencies:['dependencies', 'otherScope']});
All help are more than welcome!
- Fork this respository.
- Clone your fork and create a feature branch from develop. git clone [email protected]:/grunt-all-tasks.git git fetch origin git checkout dev git checkout -b feature-<new_feature>
- Install development dependencies. npm install
- Code and be happy!
- Test your code using Mocha.
- Submit a pull request and thanks.
Questions? Hit me.
To run all tests:
npm test
gulp-all-tasks was created by Joel A. Jaime for the world.