Skip to content

Instantly share code, notes, and snippets.

@ro31337
Created March 6, 2016 01:13
Show Gist options
  • Select an option

  • Save ro31337/f32fc6683e6fc9e1531f to your computer and use it in GitHub Desktop.

Select an option

Save ro31337/f32fc6683e6fc9e1531f to your computer and use it in GitHub Desktop.
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