-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
123 lines (100 loc) · 3.31 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
// Project Requirements
var gulp = require('gulp');
var sys = require('sys')
var concat = require('gulp-concat');
var jshint = require('gulp-jshint');
var sass = require('gulp-sass');
var spawn = require('child_process').spawn;
var exec = require('child_process').exec;
var map = require('map-stream');
var stylish = require('jshint-stylish');
var plumber = require('gulp-plumber');
var _ = require('underscore');
var prefix = require('gulp-autoprefixer');
var node;
// Config stuff:
// Specific order that creation of files in javascript folder and in subfolders trigger the watch
// Persistent bug, watch doesn't trigger on creation of a file in javascript/ path.
// Refer to: http://stackoverflow.com/questions/21386940/why-does-gulp-src-not-like-being-passed-an-array-of-complete-paths-to-files
var JSBase = './assets/javascript/';
var JSRelPaths = ['*.js','**/*.js'];
var JSPaths = _.map(JSRelPaths, function(path) {return JSBase+path;});
var CSSBase = './assets/scss/';
var CSSRelPaths = ['*.{scss,css}','**/*.{scss,css}'];
var CSSPaths = _.map(CSSRelPaths, function(path) {return CSSBase+path;});
var BundlePath = './site/*.{css,js}'
// Gulp Tasks:
gulp.task('bundle_js', function() {
gulp.src(JSPaths, {base: JSBase })
.pipe(plumber({errorHandler: onError}))
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('fail'))
.pipe(concat('bundle.js'))
.pipe(gulp.dest('./site'));
});
gulp.task('bundle_css', function() {
gulp.src(CSSPaths, {base: CSSBase})
.pipe(plumber({errorHandler: onError}))
.pipe(sass())
.pipe(concat('bundle.css'))
.pipe(prefix({ cascade: true }))
.pipe(gulp.dest('./site'));
});
gulp.task('bundle', ['bundle_js','bundle_css']);
gulp.task('watch_js', function() {
gulp.watch(JSPaths, ['bundle_js']);
});
gulp.task('watch_css', function() {
gulp.watch(CSSPaths, ['bundle_css']);
});
gulp.task('watch_bundle', function() {
gulp.watch(BundlePath, function() {
if (!node) {
gulp.start('fb-flo');
}
});
});
gulp.task('watch_assets', ['watch_js','watch_css']);
gulp.task('watch_assets_with_flo', ['fb-flo','watch_js','watch_css','watch_bundle']);
gulp.task('fb-flo', function() {
if (node) {
node.kill();
}
gulp.start('terminateOrphanFbFlo');
node = spawn('node', ['flo.js'], {stdio: 'inherit'});
node.on('close', function (code) {
if (code === 8) {
gulp.log('Error detected, turning off fb-flo...');
}
});
});
gulp.task('terminateOrphanFbFlo', function() {
var fbFloRegex = /node\s+(\d+)\s/g;
var fbFloLsof = spawn('lsof', ['-i', ':8888']);
fbFloLsof.stderr.on('data', onStderr);
fbFloLsof.on('close', onStdClose);
fbFloLsof.stdout.on('data', function (data) {
var fbFloPid = '',
results = fbFloRegex.exec(data);
if (results && results[1]) {
exec('kill -9 ' + results[1]);
}
});
});
gulp.task('default', ['bundle', 'watch_assets_with_flo' ]);
// Utility Functions
function onError (err) {
console.log(err);
// kill $(ps aux | grep 'node flo' | awk '{print $2}')
if (node) {
node.kill();
node = false;
}
}
function onStderr(data) {
console.log('stderr: ' + data);
}
function onStdClose(code) {
console.log('child process exited with code ' + code);
}