Created
September 29, 2014 23:00
-
-
Save srenault/04443085e307013f720b 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
gulp.task('watch', ['compile'], function() { | |
var assets = Assets.ts.src.files.concat(Assets.styl.src.files); | |
gulp.src(assets) | |
.pipe(watch(assets)) | |
.pipe(plumber()) | |
.pipe(exec('tarifa build web', { | |
pipeStdout: true | |
})) | |
.pipe(exec.reporter({ | |
err: true, | |
stderr: true, | |
stdout: true | |
})); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment