-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
80 lines (66 loc) · 1.99 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
70
71
72
73
74
75
76
77
78
79
80
var gulp = require('gulp');
var path = require('path');
var gutil = require("gulp-util");
var open = require('gulp-open');
var webpackServer = require('./webpack-dev.config');
var webpackConfig = require('./webpack.config');
var less = require('gulp-less');
var includer = require('gulp-htmlincluder');
var runSequence = require('run-sequence').use(gulp);
var clean = require('gulp-rimraf');
var webpack = require("webpack");
var glob = require("glob");
var config = require('./src/config/base.config');
var devPort = config.devPort;
gulp.task('open', function () {
gulp.src(__filename)
.pipe(open({uri: "http://127.0.0.1:" + devPort +config.defaultStartPage}));
});
gulp.task('hot', function (callback) {
webpackServer();
});
gulp.task('min-webpack', function (done) {
var wbpk = Object.create(webpackConfig);
wbpk.output.filename = '[name].min.js';
wbpk.plugins.push(new webpack.optimize.UglifyJsPlugin());
webpack(wbpk).run(function (err, stats) {
if (err) throw new gutil.PluginError("min-webpack", err);
gutil.log("[min-webpack]", stats.toString({
}));
done();
});
});
gulp.task('webpack', function (callback) {
webpack(
webpackConfig, function (err, stats) {
if (err) throw new gutil.PluginError("webpack", err);
gutil.log("[webpack]", stats.toString({
// output options
}));
callback();
});
});
gulp.task('html-includer', function() {
return gulp.src(config.html+'/**/*.html')
.pipe(includer())
.on('error', console.error)
.pipe(gulp.dest('html'));
});
gulp.task('clean', function(){
gulp.src([
config.output
], {read:false})
.pipe(clean());
});
gulp.task('html', function () {
return gulp.src([config.html+ '/**/*.*'])
.pipe(gulp.dest(config.output ));
});
gulp.task('default', function(){
runSequence('clean','webpack','html');
});
gulp.task('dev', ['hot', 'open']);
/*
gulp.task('watch', function() {
gulp.watch([config.html+'/!**!/!*.html'],["html-includer"]);
});*/