V
V
Vyacheslav Lebedev2015-05-31 20:48:32
Grunt.js
Vyacheslav Lebedev, 2015-05-31 20:48:32

How to execute tasks one by one in gulp and gulp-grunt?

Good evening!
There are tasks (grunt) that are executed only after other tasks (gulp) have been completed.

gulp.task('gulp:build', [ ... ]); // таски, которые нужно выполнить в первую очередь
gulp.task('grunt:build', [ ... ]); // таски, которые будут выполнены, только на основе сборки гулпом
gulp.task('default', ['gulp:build', 'grunt:build']);

How to make it so that there would be no need to call them one by one manually?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Zuev, 2015-06-01
@slavikse

Look towards run-sequence

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question