gulp-pack-run

0.1.0 • Public • Published

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);
});

Package Sidebar

Install

npm i gulp-pack-run

Weekly Downloads

1

Version

0.1.0

License

none

Last publish

Collaborators

  • treeskar