-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
70 lines (59 loc) · 1.81 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
var gulp = require("gulp"),
webpack = require("gulp-webpack"),
babel= require("gulp-babel"),
clean = require("gulp-clean"),
uglify = require("gulp-uglify"),
plumber = require('gulp-plumber'),
camelCase = require('camelcase');
var path = require("path"),
del = require('del');
var packageJson = require('./package.json');
// Library name
var exportLibraryName = camelCase(packageJson.name);
gulp.task("clean:dist", function() {
return gulp.src("dist", { read: false }).pipe(clean());
});
gulp.task("clean:tmp", function() {
return gulp.src("tmp", { read: false }).pipe(clean());
});
gulp.task("js:babel", function() {
return gulp.src("src/**/*.js")
.pipe(plumber())
.pipe(babel({
presets: ['es2015']
}))
.pipe(gulp.dest("tmp"));
});
gulp.task("js:webpack", ["js:babel", "clean:dist"], function() {
return gulp.src("tmp/**/*.js")
.pipe(plumber())
.pipe(webpack({
entry: path.resolve(__dirname, "tmp", "template.js"),
output: {
filename: 'template.js',
library: exportLibraryName,
libraryTarget: 'umd',
umdNamedDefine: true
}
}))
.pipe(gulp.dest("dist"));
});
gulp.task("js:optimize", ["js:webpack"], function() {
return gulp.src("dist/template.js")
.pipe(plumber())
.pipe(uglify({preserveComments: 'some', }))
.pipe(gulp.dest("dist/min"));
});
gulp.task("build", ["js:optimize"], function () {
return gulp.src("tmp", { read: false }).pipe(clean());
});
gulp.task("default", ["build"], function() {
console.log("All done.");
});
gulp.task("dev", ["build"], function() {
var watcher = gulp.watch('src/**/*.js', ['default']);
watcher.on('change', function(event) {
console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
});
console.log("Now, watching file change...");
});