Created
November 24, 2015 06:44
-
-
Save cod3beat/dc001a191fe5ddca4c5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
var component = require('./resources/gulps/componentTask'); | |
gulp.task('watch', function() { | |
gulp.watch(['./resources/css/**/*.css'], ['cssrev']); | |
gulp.watch(['./resources/js/**/*.js'], ['jsrev']); | |
}); | |
gulp.task('default', ['watch', 'component']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment