You can run tasks in series, by passing a second parameter to gulp.task().
This parameters is an array of tasks to be executed and completed before your task will run:
var gulp = require('gulp');
gulp.task('one', function() {
// compile sass css
});
gulp.task('two', function() {
// ...