Skip to content

Instantly share code, notes, and snippets.

@naufaldi
Last active January 23, 2018 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naufaldi/70f764404d511e65f3a6f6265c09c00a to your computer and use it in GitHub Desktop.
Save naufaldi/70f764404d511e65f3a6f6265c09c00a to your computer and use it in GitHub Desktop.
Gulp Task for Webpack
gulp.task("script", function(){
return gulp.src("./resource/assets/js/app")
.pipe(webpack(require("./webpack.config.js")))
.pipe(gulp.dest("./public/assets/js/"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment