Skip to content

Commit

Permalink
backwards comptible calls for stage ==> build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpapa committed Dec 6, 2014
1 parent 89cb8bc commit 750e91c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modular/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@ gulp.task('build', ['rev-and-inject', 'images', 'fonts'], function() {
}));
});

/**
* Backwards compatible call to make stage and build equivalent
*/
gulp.task('stage', ['build'], function() {});

/**
* Remove all files from the build folder
* One way to run clean before all tasks is to run
Expand Down Expand Up @@ -321,6 +326,11 @@ gulp.task('serve-build', function() {
});
});

/**
* Backwards compatible call to make stage and build equivalent
*/
gulp.task('serve-stage', ['serve-build'], function() {});

////////////////

/**
Expand Down

0 comments on commit 750e91c

Please sign in to comment.