Last active
January 23, 2018 18:46
-
-
Save naufaldi/70f764404d511e65f3a6f6265c09c00a to your computer and use it in GitHub Desktop.
Gulp Task for Webpack
This file contains hidden or 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("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