Skip to content

Instantly share code, notes, and snippets.

@egor-smirnov
Created September 1, 2015 08:36
Show Gist options
  • Select an option

  • Save egor-smirnov/d96e1545907fa77a3a86 to your computer and use it in GitHub Desktop.

Select an option

Save egor-smirnov/d96e1545907fa77a3a86 to your computer and use it in GitHub Desktop.
gulp.task('build-prod', function () {
return browserify({entries: './app.jsx', extensions: ['.jsx'], debug: false})
.transform(babelify)
.bundle()
.pipe(source('bundle.js'))
.pipe(gulp.dest('dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment