forked from willcannings/live-dash-mse-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
121 lines (106 loc) · 3.03 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
'use strict';
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var del = require('del');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var compass = require('gulp-compass');
var path = require('path');
var spawn = require('child_process').spawn;
var babel = require('gulp-babel');
var sourcemaps = require('gulp-sourcemaps');
var concat = require('gulp-concat');
var paths = {
html: ['demo/**/*.html'],
css: '.tmp/**/*.css',
js: ['src/**/*.js'],
images: [
'demo/images/*.png',
'demo/images/*.jpg',
'demo/images/*.svg',
'demo/images/*.gif'
]
};
// -------------------------------------------
// development
// -------------------------------------------
// use compass watch to only compile files when necessary
gulp.task('dev:styles', function () {
var options = ['watch',
process.cwd(),
'--relative-assets',
'--output-style',
'nested',
'--css-dir',
'.tmp',
'--sass-dir',
'demo',
'--boring',
'--import-path',
'bower_components'
];
// Support both old and new spawn interface
var child = null;
try {
child = spawn('compass', options, process.cwd());
} catch (e) {
child = spawn('compass', options, {
cwd: process.cwd()
});
}
child.stdout.setEncoding('utf8');
child.stdout.on('data', function (data) {
console.log(data);
});
child.stderr.setEncoding('utf8');
child.stderr.on('data', function (data) {
console.log(data);
});
});
// use babel to transpile ES6 > ES5
gulp.task('dev:js', function () {
return gulp.src(paths.js)
.pipe(sourcemaps.init())
.pipe(babel({
modules: 'ignore',
optional: 'es7.comprehensions'
}))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('.tmp'));
});
// watch for changes to html and images and reload
// changes to js will be compiled but won't reload
gulp.task('watch', function() {
gulp.watch(paths.js, ['dev:js']);
gulp.watch(paths.html, reload);
gulp.watch(paths.images, reload);
});
// watch files for changes & reload
gulp.task('browser-sync', function () {
var baseDirs = ['.tmp', 'demo', 'bower_components', 'node_modules'];
browserSync.init([paths.css], {
notify: false,
port: 7000,
open: false,
host: '0.0.0.0',
server: {
baseDir: baseDirs,
index: 'index.html',
}
});
});
gulp.task('serve', ['dev:js', 'dev:styles', 'watch', 'browser-sync']);
// -------------------------------------------
// production
// -------------------------------------------
// clean output directory
gulp.task('clean', del.bind(null, ['.tmp', 'dist']));
gulp.task('prod:js', function () {
return gulp.src(paths.js)
.pipe(babel({
modules: 'ignore',
optional: 'es7.comprehensions'
}))
.pipe(gulp.dest('dist'));
});
gulp.task('default', ['prod:js']);