-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
92 lines (81 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
'use strict';
var gulp = require('gulp'),
clean = require('gulp-clean'),
cleanhtml = require('gulp-cleanhtml'),
minifycss = require('gulp-minify-css'),
jshint = require('gulp-jshint'),
stripdebug = require('gulp-strip-debug'),
uglify = require('gulp-uglify'),
zip = require('gulp-zip'),
size = require('gulp-size'),
transform = require('vinyl-transform'),
browserify = require('browserify');
//clean build directory
gulp.task('clean', function() {
return gulp.src('build/*', {read: false})
.pipe(clean());
});
//copy static folders to build directory
gulp.task('copy', function() {
gulp.src('src/fonts/**')
.pipe(gulp.dest('build/fonts'));
gulp.src('src/icons/**')
.pipe(gulp.dest('build/icons'));
gulp.src('src/_locales/**')
.pipe(gulp.dest('build/_locales'));
return gulp.src('src/manifest.json')
.pipe(gulp.dest('build'));
});
//copy and compress HTML files
gulp.task('html', function() {
return gulp.src('src/*.html')
.pipe(cleanhtml())
.pipe(gulp.dest('build'));
});
//run scripts through JSHint
gulp.task('jshint', function() {
return gulp.src('src/scripts/*.js')
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
//copy vendor scripts and uglify all other scripts, creating source maps
gulp.task('scripts', ['jshint'], function() {
gulp.src('src/scripts/vendors/**/*.js')
.pipe(gulp.dest('build/scripts/vendors'));
var browserified = transform(function(filename) {
var b = browserify(filename);
return b.bundle();
});
return gulp.src(['src/scripts/**/*.js', '!src/scripts/vendors/**/*.js'])
.pipe(browserified)
.pipe(stripdebug())
.pipe(uglify({outSourceMap: true}))
.pipe(gulp.dest('build/scripts'));
});
//minify styles
gulp.task('styles', function() {
// return gulp.src('src/styles/**/*.css')
// .pipe(minifycss({root: 'src/styles', keepSpecialComments: 0}))
// .pipe(gulp.dest('build/styles'));
return gulp.src('src/styles/**')
.pipe(gulp.dest('build/styles'));
});
//build ditributable and sourcemaps after other tasks completed
gulp.task('zip', ['html', 'scripts', 'styles', 'copy'], function() {
var manifest = require('./src/manifest'),
distFileName = manifest.name + ' v' + manifest.version + '.zip',
mapFileName = manifest.name + ' v' + manifest.version + '-maps.zip';
//collect all source maps
gulp.src('build/scripts/**/*.map')
.pipe(zip(mapFileName))
.pipe(gulp.dest('dist'));
//build distributable extension
return gulp.src(['build/**', '!build/scripts/**/*.map'])
.pipe(size({showFiles: false}))
.pipe(zip(distFileName))
.pipe(gulp.dest('dist'));
});
//run all tasks after build directory has been cleaned
gulp.task('default', ['clean'], function() {
gulp.start('zip');
});