-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
59 lines (49 loc) · 1.27 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
var fs = require('fs'),
createSymlink = require('create-symlink'),
gulp = require('gulp'),
browserify = require('browserify'),
watchify = require('watchify');
function createScenarioSymlink() {
var path = './scenarios/wod6/Info.js',
target = './src/js/ScenarioInfo.js';
if (fs.existsSync(target)) {
return Promise.resolve();
}
return createSymlink(path, target);
}
function bundle(b) {
console.log("Creating bundle");
b.bundle()
.pipe(fs.createWriteStream('./build/oax6.js'));
}
gulp.task('build', function() {
createScenarioSymlink()
.then(function() {
var b = browserify({
entries: ['./src/js/OAX6.js'],
debug: true
});
bundle(b);
})
.catch(function(error) {
console.error(error);
});
});
gulp.task('watch', function() {
createScenarioSymlink()
.then(function() {
var b = browserify({
entries: ['./src/js/OAX6.js'],
cache: {},
packageCache: {},
plugin: [watchify],
debug: true
});
b.on('update', function(){ bundle(b); });
bundle(b);
})
.catch(function(error) {
console.error(error);
});
});
gulp.task('default', ['build']);