Created
March 6, 2016 01:13
-
-
Save ro31337/f32fc6683e6fc9e1531f 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 sequence = require('run-sequence'); | |
| // ... | |
| gulp.task('build', function(callback) { | |
| sequence('clean', ['copy-html', 'browserify'], callback); | |
| }); | |
| // convert React components to be used in the browser | |
| gulp.task('browserify', function() { | |
| // nothing here for now | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment