This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
173 lines (146 loc) · 4.87 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
var del = require('del');
var gulp = require('gulp');
var path = require('path');
var argv = require('yargs').argv;
var gutil = require('gulp-util');
var source = require('vinyl-source-stream');
var buffer = require('gulp-buffer');
var uglify = require('gulp-uglify');
var gulpif = require('gulp-if');
var exorcist = require('exorcist');
var babelify = require('babelify');
var browserify = require('browserify');
var browserSync = require('browser-sync');
/**
* Using different folders/file names? Change these constants:
*/
var PHASER_PATH = './node_modules/phaser/build/';
var BUILD_PATH = './build';
var SCRIPTS_PATH = BUILD_PATH + '/scripts';
var SOURCE_PATH = './src';
var STATIC_PATH = './static';
var ENTRY_FILE = SOURCE_PATH + '/index.js';
var OUTPUT_FILE = 'game.js';
var keepFiles = false;
/**
* Simple way to check for development/production mode.
*/
function isProduction() {
return argv.production;
}
/**
* Logs the current build mode on the console.
*/
function logBuildMode() {
if (isProduction()) {
gutil.log(gutil.colors.green('Running production build...'));
} else {
gutil.log(gutil.colors.yellow('Running development build...'));
}
}
/**
* Deletes all content inside the './build' folder.
* If 'keepFiles' is true, no files will be deleted. This is a dirty workaround since we can't have
* optional task dependencies :(
* Note: keepFiles is set to true by gulp.watch (see serve()) and reseted here to avoid conflicts.
*/
function cleanBuild() {
if (!keepFiles) {
del(['build/**/*.*']);
} else {
keepFiles = false;
}
}
/**
* Copies the content of the './static' folder into the '/build' folder.
* Check out README.md for more info on the '/static' folder.
*/
function copyStatic() {
return gulp.src(STATIC_PATH + '/**/*')
.pipe(gulp.dest(BUILD_PATH));
}
/**
* Copies required Phaser files from the './node_modules/Phaser' folder into the './build/scripts' folder.
* This way you can call 'npm update', get the lastest Phaser version and use it on your project with ease.
*/
function copyPhaser() {
var srcList = ['phaser.min.js'];
if (!isProduction()) {
srcList.push('phaser.map', 'phaser.js');
}
srcList = srcList.map(function(file) {
return PHASER_PATH + file;
});
return gulp.src(srcList)
.pipe(gulp.dest(SCRIPTS_PATH));
}
/**
* Transforms ES2015 code into ES5 code.
* Optionally: Creates a sourcemap file 'game.js.map' for debugging.
*
* In order to avoid copying Phaser and Static files on each build,
* I've abstracted the build logic into a separate function. This way
* two different tasks (build and fastBuild) can use the same logic
* but have different task dependencies.
*/
function build() {
var sourcemapPath = SCRIPTS_PATH + '/' + OUTPUT_FILE + '.map';
logBuildMode();
return browserify({
paths: [path.join(__dirname, 'src')],
entries: ENTRY_FILE,
debug: true,
transform: [
[
babelify, {
presets: ["es2015"]
}
]
]
})
.transform(babelify)
.bundle().on('error', function(error) {
gutil.log(gutil.colors.red('[Build Error]', error.message));
this.emit('end');
})
.pipe(gulpif(!isProduction(), exorcist(sourcemapPath)))
.pipe(source(OUTPUT_FILE))
.pipe(buffer())
.pipe(gulpif(isProduction(), uglify()))
.pipe(gulp.dest(SCRIPTS_PATH));
}
/**
* Starts the Browsersync server.
* Watches for file changes in the 'src' folder.
*/
function serve() {
var options = {
server: {
baseDir: BUILD_PATH
},
open: false // Change it to true if you wish to allow Browsersync to open a browser window.
};
browserSync(options);
// Watches for changes in files inside the './src' folder.
gulp.watch(SOURCE_PATH + '/**/*.js', ['watch-js']);
// Watches for changes in files inside the './static' folder. Also sets 'keepFiles' to true (see cleanBuild()).
gulp.watch(STATIC_PATH + '/**/*', ['watch-static']).on('change', function() {
keepFiles = true;
});
}
gulp.task('cleanBuild', cleanBuild);
gulp.task('copyStatic', ['cleanBuild'], copyStatic);
gulp.task('copyPhaser', ['copyStatic'], copyPhaser);
gulp.task('build', ['copyPhaser'], build);
gulp.task('fastBuild', build);
gulp.task('serve', ['build'], serve);
gulp.task('watch-js', ['fastBuild'], browserSync.reload); // Rebuilds and reloads the project when executed.
gulp.task('watch-static', ['copyPhaser'], browserSync.reload);
/**
* The tasks are executed in the following order:
* 'cleanBuild' -> 'copyStatic' -> 'copyPhaser' -> 'build' -> 'serve'
*
* Read more about task dependencies in Gulp:
* https://medium.com/@dave_lunny/task-dependencies-in-gulp-b885c1ab48f0
*/
gulp.task('default', ['serve']);