Created
March 5, 2016 21:46
-
-
Save karellm/d2e21a0751226950983d to your computer and use it in GitHub Desktop.
The only right way!
This file contains 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
gulp.task( | |
'build-jsx', | |
() => { | |
return ( | |
browserify({ | |
entries: './client/index.js', | |
debug: true, | |
}) | |
.transform(babelify.configure({ | |
presets: ['es2015', 'react'] | |
})) | |
.bundle() | |
.pipe(source('index.js')) | |
.pipe(gulp.dest('./build/client')) | |
); | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment