-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
69 lines (53 loc) · 1.4 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
'use strict';
var path = require('path');
var gulp = require('gulp'),
less = require('gulp-less'),
webpack = require('gulp-webpack-build'),
uglify = require('gulp-uglify'),
watchify = require('watchify'),
watch = require('gulp-watch');
var WebpackDevServer = require("webpack-dev-server");
var SRC = {
HTML: './src/*.html',
JS: './src/js/**',
JADE: './src/jade/**',
IMG: './src/img/*'
};
var DIST = {
HTML: './dist/',
IMG: './dist/img/'
};
var WEBPACK_CONFIG = require('./webpack.config');
gulp.task('html', function () {
gulp.src(SRC.HTML)
.pipe(gulp.dest(DIST.HTML));
});
gulp.task('img', function () {
gulp.src(SRC.IMG)
.pipe(gulp.dest(DIST.IMG));
});
gulp.task('webpack', function () {
gulp.src(webpack.config.CONFIG_FILENAME)
.pipe(webpack.compile(WEBPACK_CONFIG))
//.pipe(uglify())
.pipe(gulp.dest('./'));
});
gulp.task('default', ['html', 'img', 'webpack']);
gulp.task('watch', function () {
gulp.start('default');
function rule (/* rules */) {
var rules = [].slice.call(arguments);
return function () {
gulp.start(rules);
};
}
watch(SRC.HTML, rule('html'));
watch(SRC.IMG, rule('img'));
var config = Object.create(WEBPACK_CONFIG);
var compiler = require('webpack')(WEBPACK_CONFIG);
new WebpackDevServer(compiler, {
contentBase: 'dist'
}).listen(8080, '0.0.0.0', function(err) {
if(err) throw err;
});
});