Skip to content

Instantly share code, notes, and snippets.

@spencercarnage
Created April 15, 2015 20:11
Show Gist options
  • Save spencercarnage/b16100b536f6df0262ac to your computer and use it in GitHub Desktop.
Save spencercarnage/b16100b536f6df0262ac to your computer and use it in GitHub Desktop.
Babelify transform with runtime
"browserify": {
"transform": [
[
"babelify",
{
"optional": [
"runtime"
],
"whitelist": [
"es6.arrowFunctions",
"es6.blockScoping",
"es6.classes",
"es6.constants",
"es6.parameters.default",
"es6.parameters.rest",
"es6.properties.shorthand"
],
"only": [
"**/src/components.js"
]
}
]
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment