-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
101 lines (73 loc) · 1.78 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
// gulpfile.js - http://jsua.co/mm-gulp
'use strict'; // http://www.w3schools.com/js/js_strict.asp
// 1. LOAD PLUGINS
var gulp = require('gulp');
var p = require('gulp-load-plugins')({ // This loads all the other plugins.
DEBUG: false,
pattern: ['gulp-*', 'gulp.*', 'del', 'run-*', 'browser*', 'vinyl-*'],
rename: {
'vinyl-source-stream': 'source',
'vinyl-buffer': 'buffer',
'gulp-util': 'gutil'
},
});
// 2. CONFIGURATION
var
src = './',
dest = 'dist/',
development = p.environments.development,
js = {
in: src + './*.{js,coffee}',
out: dest
},
uglifyOpts = {
preserveComments: 'license'
};
// 3. WORKER TASKS
// Javascript Bundling
gulp.task('js', function() {
var a = p.browserify({
entries: src,
insertGlobals : true,
standalone: 'Octobat',
debug: true
});
a.bundle().on('error', handleError)
.pipe(p.source('octobat-form.min.js'))
.pipe(p.buffer())
.pipe(p.stripDebug())
.pipe(p.uglify(uglifyOpts))
.pipe(gulp.dest(js.out));
var b = p.browserify({
entries: src,
insertGlobals : true,
standalone: 'Octobat',
debug: true
});
b.bundle().on('error', handleError)
.pipe(p.source('octobat-form.js'))
.pipe(p.buffer())
.pipe(p.stripDebug())
.pipe(gulp.dest(js.out));
});
// Clean dest/
gulp.task('clean', function() {
p.del([
dest + '*'
]);
});
// 4. SUPER TASKS
// Development Task
gulp.task('development', function(done) {
p.runSequence('clean', 'js', done);
});
// Default Task
// This is the task that will be invoked by Middleman's exteranal pipeline when
// running 'middleman server'
gulp.task('build', ['development'], function() {
gulp.watch(js.in, ['js']);
});
function handleError(err) {
console.log(err.toString());
this.emit('end');
}