-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
149 lines (130 loc) · 4.6 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
var gulp = require('gulp');
var plugins = require('gulp-load-plugins')();
var runSequence = require('run-sequence');
var del = require('del');
var assign = require('lodash/object/assign');
var browserify = require('browserify');
var watchify = require('watchify');
var babelify = require('babelify');
var hbsfy = require('hbsfy');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var mergeStream = require('merge-stream');
var through = require('through2');
var args = process.argv.slice(3);
gulp.task('clean', function (done) {
del(['build'], done);
});
gulp.task('copy', function () {
return mergeStream(
gulp.src('public/imgs/**/*').pipe(gulp.dest('build/public/imgs/')),
gulp.src('public/avatars/**/*').pipe(gulp.dest('build/public/avatars/')),
gulp.src('server/*.txt').pipe(gulp.dest('build/server/')),
gulp.src('public/*.json').pipe(gulp.dest('build/public/'))
);
});
gulp.task('css', function () {
return gulp.src('public/scss/*.scss')
.pipe(plugins.sass.sync().on('error', plugins.sass.logError))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.sass({ outputStyle: 'compressed' }))
.pipe(plugins.sourcemaps.write('./'))
.pipe(gulp.dest('build/public/css/'));
});
function createBundle(src) {
if (!src.push) {
src = [src];
}
var customOpts = {
entries: src,
debug: true
};
var opts = assign({}, watchify.args, customOpts);
var b = watchify(browserify(opts));
b.transform(babelify.configure({
stage: 1
}));
b.transform(hbsfy);
b.on('log', plugins.util.log);
return b;
}
function bundle(b, outputPath) {
var splitPath = outputPath.split('/');
var outputFile = splitPath[splitPath.length - 1];
var outputDir = splitPath.slice(0, -1).join('/');
return b.bundle()
// log errors if they happen
.on('error', plugins.util.log.bind(plugins.util, 'Browserify Error'))
.pipe(source(outputFile))
// optional, remove if you don't need to buffer file contents
.pipe(buffer())
// optional, remove if you dont want sourcemaps
.pipe(plugins.sourcemaps.init({loadMaps: true})) // loads map from browserify file
// Add transformation tasks to the pipeline here.
.pipe(plugins.sourcemaps.write('./')) // writes .map file
.pipe(gulp.dest('build/public/' + outputDir));
}
var jsBundles = {
'js/polyfills/promise.js': createBundle('./public/js/polyfills/promise.js'),
'js/polyfills/url.js': createBundle('./public/js/polyfills/url.js'),
'js/settings.js': createBundle('./public/js/settings/index.js'),
'js/main.js': createBundle('./public/js/main/index.js'),
'js/remote-executor.js': createBundle('./public/js/remote-executor/index.js'),
'js/idb-test.js': createBundle('./public/js/idb-test/index.js'),
'sw.js': createBundle(['./public/js/sw/index.js', './public/js/sw/preroll/index.js'])
};
gulp.task('js:browser', function () {
return mergeStream.apply(null,
Object.keys(jsBundles).map(function(key) {
return bundle(jsBundles[key], key);
})
);
});
gulp.task('js:server', function () {
return gulp.src('server/**/*.js')
.pipe(plugins.sourcemaps.init())
.pipe(plugins.babel({stage: 1}))
.on('error', plugins.util.log.bind(plugins.util))
.pipe(plugins.sourcemaps.write('.'))
.pipe(gulp.dest('build/server'));
});
gulp.task('templates:server', function () {
return gulp.src('templates/*.hbs')
.pipe(plugins.handlebars())
.on('error', plugins.util.log.bind(plugins.util))
.pipe(through.obj(function(file, enc, callback) {
// Don't want the whole lib
file.defineModuleOptions.require = {Handlebars: 'handlebars/runtime'};
callback(null, file);
}))
.pipe(plugins.defineModule('commonjs'))
.pipe(plugins.rename(function(path) {
path.extname = '.js';
}))
.pipe(gulp.dest('build/server/templates'));
});
gulp.task('watch', function () {
gulp.watch(['public/scss/**/*.scss'], ['css']);
gulp.watch(['templates/*.hbs'], ['templates:server']);
gulp.watch(['server/**/*.js'], ['js:server']);
gulp.watch(['public/imgs/**/*', 'public/avatars/**/*', 'server/*.txt', 'public/*.json'], ['copy']);
Object.keys(jsBundles).forEach(function(key) {
var b = jsBundles[key];
b.on('update', function() {
return bundle(b, key);
});
});
});
gulp.task('server', function() {
plugins.developServer.listen({
path: './index.js',
cwd: './build/server',
args: args
});
gulp.watch([
'build/server/**/*.js'
], plugins.developServer.restart);
});
gulp.task('serve', function(callback) {
runSequence('clean', ['css', 'js:browser', 'templates:server', 'js:server', 'copy'], ['server', 'watch'], callback);
});