JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13019
  • Score
    100M100P100Q129256F

Run a series of gulp tasks in order.

Package Exports

  • gulp-sequence

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-sequence) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-sequence v0.3.1 Build Status

Run a series of gulp tasks in order.

Install

Install with npm

npm install --save-dev gulp-sequence

Usage

var gulp = require('gulp'),
  gulpSequence = require('gulp-sequence');

gulp.task('a', function (cb) {
  //... cb()
});

gulp.task('b', function (cb) {
  //... cb()
});

gulp.task('c', function (cb) {
  //... cb()
});

gulp.task('d', function (cb) {
  //... cb()
});

gulp.task('e', function (cb) {
  //... cb()
});

gulp.task('f', function () {
  // return stream
  return gulp.src('*.js');
});

// usage 1, recommend
// 1. run 'a', 'b' in parallel;
// 2. run 'c' after 'a' and 'b';
// 3. run 'd', 'e' in parallel after 'c';
// 3. run 'f' after 'd' and 'e'.
gulp.task('sequence-1', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'));

// usage 2
gulp.task('sequence-2', function (cb) {
  gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f', cb);
});

// usage 3
gulp.task('sequence-3', function (cb) {
  gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f')(cb);
});

gulp.task('gulp-sequence', gulpSequence('sequence-1', 'sequence-2', 'sequence-3'));

API

var gulpSequence = require('gulp-sequence');

gulpSequence('subtask1', 'subtask2',...[, callback])

return a thunk function.

var gulp = require('gulp'),
  gulpSequence = require('gulp-sequence');

gulp.task('test', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'));

gulpSequence.use(gulp)

return a new gulpSequence function with the gulp. If you have some errors such as "task xxx is not defined", this will resolve it.

var gulp = require('gulp'),
  gulpSequence = require('gulp-sequence').use(gulp);

gulp.task('test', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'));

License

MIT © Teambition