Skip to content

Instantly share code, notes, and snippets.

@marr
Created February 19, 2016 17:37
Show Gist options
  • Save marr/d3b6cd5cd1f6f8fc9b5e to your computer and use it in GitHub Desktop.
Save marr/d3b6cd5cd1f6f8fc9b5e to your computer and use it in GitHub Desktop.
var fs = require("fs");
var browserify = require("browserify");
browserify("./src/index.js")
.transform("babelify", {presets: ["es2015", "react"]})
.bundle()
.pipe(fs.createWriteStream("./dist/bundle.js"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment