This repository has been archived by the owner on May 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
154 lines (133 loc) · 3.97 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
'use strict';
var gulp = require('gulp'),
del = require('del'),
path = require('path'),
$ = require('gulp-load-plugins')(),
browserify = require('browserify'),
watchify = require('watchify'),
source = require('vinyl-source-stream'),
sourceFile = './app/scripts/app.js',
destFolder = './dist/scripts',
destFileName = 'app.js';
// Styles
gulp.task('styles', ['sass']);
gulp.task('sass', function() {
return gulp.src(['app/styles/**/*.scss', 'app/styles/**/*.css'])
.pipe($.rubySass({
style: 'expanded',
precision: 10,
loadPath: ['app/bower_components']
}))
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('dist/styles'))
.pipe($.size());
});
gulp.task('stylus', function() {
return gulp.src(['app/styles/**/*.styl'])
.pipe($.stylus())
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('dist/styles'))
.pipe($.size());
});
var bundler = watchify(browserify({
entries: [sourceFile],
debug: true,
insertGlobals: true,
cache: {},
packageCache: {},
fullPaths: true
}));
bundler.on('update', rebundle);
bundler.on('log', $.util.log);
function rebundle() {
return bundler.bundle() // log errors if they happen
.on('error', $.util.log.bind($.util, 'Browserify Error'))
.pipe(source(destFileName))
.pipe(gulp.dest(destFolder));
}
// Scripts
gulp.task('scripts', rebundle);
gulp.task('buildScripts', function() {
return browserify(sourceFile)
.bundle()
.pipe(source(destFileName))
.pipe(gulp.dest('dist/scripts'));
});
// HTML
gulp.task('html', function() {
return gulp.src('app/*.html')
.pipe($.useref())
.pipe(gulp.dest('dist'))
.pipe($.size());
});
// Images
gulp.task('images', function() {
return gulp.src('app/images/**/*')
.pipe($.cache($.imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})))
.pipe(gulp.dest('dist/images'))
.pipe($.size());
});
// Fonts
gulp.task('fonts', function() {
return gulp.src(require('main-bower-files')({
filter: '**/*.{eot,svg,ttf,woff,woff2}'
}).concat('app/fonts/**/*'))
.pipe(gulp.dest('dist/fonts'));
});
// Clean
gulp.task('clean', function(cb) {
$.cache.clearAll();
cb(del.sync(['dist/styles', 'dist/scripts', 'dist/images']));
});
// Bundle
gulp.task('bundle', ['styles', 'scripts', 'bower'], function() {
return gulp.src('./app/*.html')
.pipe($.useref.assets())
.pipe($.useref.restore())
.pipe($.useref())
.pipe(gulp.dest('dist'));
});
gulp.task('buildBundle', ['styles', 'buildScripts', 'bower'], function() {
return gulp.src('./app/*.html')
.pipe($.useref.assets())
.pipe($.useref.restore())
.pipe($.useref())
.pipe(gulp.dest('dist'));
});
// Bower helper
gulp.task('bower', function() {
gulp.src('app/bower_components/**/*.js', {
base: 'app/bower_components'
}).pipe(gulp.dest('dist/bower_components/'));
});
gulp.task('json', function() {
gulp.src('app/scripts/json/**/*.json', {
base: 'app/scripts'
}).pipe(gulp.dest('dist/scripts/'));
});
// Robots.txt and favicon.ico
gulp.task('extras', function() {
return gulp.src(['app/*.txt', 'app/*.ico'])
.pipe(gulp.dest('dist/'))
.pipe($.size());
});
// Watch
gulp.task('watch', ['html', 'fonts', 'bundle'], function() {
gulp.watch('app/scripts/**/*.json', ['json']);
gulp.watch('app/*.html', ['html']);
gulp.watch(['app/styles/**/*.scss', 'app/styles/**/*.css'], ['styles']);
gulp.watch('app/images/**/*');
});
// Build
gulp.task('build', ['html', 'buildBundle', 'images', 'fonts', 'extras'], function() {
gulp.src('dist/scripts/app.js')
.pipe($.uglify())
// .pipe($.stripDebug())
.pipe(gulp.dest('dist/scripts'));
});
// Default task
gulp.task('default', ['clean', 'build', 'jest']);