Questions tagged [run-sequence]

For the run-sequence node library that assists with gulp.

Runs a sequence of gulp tasks in the specified order. This function is designed to solve the situation where you have defined run-order, but choose not to or cannot use dependencies.

See the GitHub ReadMe for detailed information.

19 questions
0
votes
2 answers

run-sequence synchronous task never completes

I'm almost certainly going about this in the wrong way, so first up my high-level requirement. I'm using the angular2-seed and want to run Protractor tests in a headless mode by using Xvfb. I don't want an Xvfb server running at all times (this is…
GMeister
  • 331
  • 2
  • 15
0
votes
1 answer

using a dynamic list of gulp tasks in run-sequence

I am creating some gulp tasks with dynamic task names. These tasks need to be run in order, not parallel. I am putting the task names in an array, but I am getting an error from run-sequence. I assume this error is a problem with how I am listing…
scottnath
  • 71
  • 6
0
votes
1 answer

gulp.watch only runs once when passed a run-sequence task

I have a gulpfile, it uses run sequence and gulp.watch(). Here is an example task that uses run sequence. gulp.task('rebuild', function (callback) { runSequence('clean', 'lint', ['process-js', 'process-styles',…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
0
votes
1 answer

Issue with task not executing when using gulp with run-sequence

I am new to gulp and so I put a simple script together to 1) learn how gulp works and 2) improve my development workflow. The issue I am having is that if I set the runSequence task list to be in the order of jscs and then lint, the lint task does…
Anil
  • 2,539
  • 6
  • 33
  • 42
1
2