Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var gulp = require('gulp'),
  2. webpack = require('webpack');
  3.  
  4. gulp.task('scripts', function(callback) {
  5. webpack(require('../webpack.config.js'), function(err, stats) {
  6. if (err) console.log(err.toString());
  7. console.log(stats.toString());
  8. callback();
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement