0.1.0 • Published 10 years ago

gulp-pack-run v0.1.0

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

gulp-pack-run

This plugin allow you run your gulp task in the specified order

Usage

First, install pack-run as a development dependency:

npm install --save-dev gulp-pack-run

Then add use it in your gulpfile, like so:

var gulp = require('gulp'),
	packRun = require('gulp-pack-run');

// This will run in this order:
gulp.task('build', function(callback) {
	var manifest = [
		'bower',
		'templates',
		{
			name: 'concat-js',
			dependencies: ['bower', 'tpl']
		},
		{
			name: 'sass',
			dependencies: ['bower']
		}
	];

	return packRun(manifest);
});