This repository was archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.js
215 lines (187 loc) · 4.99 KB
/
build.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/**
* Client-side script builder
* build script
*/
var fs = require('fs');
// tools
var browserify = require("browserify");
var jsmin = require('jsmin').jsmin;
exports.build = function() {
console.log("Client-side script builder");
// args
var DEV = false;
var infile = "./game/client/main.js";
var outfile = "./public/js/bundle.js";
// var outfile2 = "./php/r/game/bundle.js";
var useClosure = false;
var args = Array.prototype.slice.call(process.argv, 2);
while (args.length > 0) {
var argv = args.shift();
switch (argv) {
case '-dev':
DEV = true;
console.log("DEV Build")
break;
case '-infile':
if (args.length <= 0)
console.log("please specify the infile : -infile example.js");
infile = args.shift();
break;
case '-outfile':
if (args.length <= 0)
console.log("please specify the outfile : -outfile export.js");
outfile = args.shift();
break;
case '-closure':
useClosure = true;
}
}
DEV = true;
bundle = browserify(infile, {
watch : DEV,
debug : DEV ? true : false
});
function write() {
// jsmin(text, options.level, options.comment)
// var src = jsmin(bundle.bundle() , 2);
var src;
if (DEV) {
src = bundle.bundle();
} else {
src = jsmin(bundle.bundle());
}
if (!bundle.ok) {
console.error("build FAILED , JS ERROR");
//return;
}
fs.writeFile(outfile, src, function() {
console.log((new Date().toTimeString()) + ' ' + Buffer(src).length
+ ' bytes written');
});
/*
fs.writeFile(outfile2, src, function() {
console.log((new Date()).toTimeString() + ' '
+ Buffer(src).length + ' bytes written to PHP dir');
});
*/
}
if (useClosure && !DEV) {
console.log("USING Google Closure Compiler Service (DON'T USE IT)");
compile(bundle.bundle(), function(err, code) {
if (err)
throw err;
fs.writeFile(outfile, code, function() {
console.log((new Date()).toTimeString() + ' '
+ Buffer(code).length + ' bytes written');
});
/*
fs.writeFile(outfile2, code, function() {
console.log((new Date()).toTimeString() + ' '
+ Buffer(code).length + ' bytes written to PHP dir');
});*/
});
} else {
write();
}
// if (DEBUG)
if (DEV)
bundle.on('bundle', write);
};
//script that use closure-compiler (not in use)
// https://github.com/weaver/scribbles/blob/master/node/google-closure/lib/closure.js
// / # Google Closure Compiler Service #
// /
// / Compress javascript with Node.js using the Closure Compiler
// / Service.
var sys = require('sys');
// Use the Google Closure Compiler Service to compress Javascript
// code.
//
// + code - String of javascript to compress
// + next - Function callback that accepts.
//
// This method will POST the `code` to the compiler service. If an
// error occurs, `next()` will be called with an `Error` object as the
// first argument. Otherwise, the `next()` will be called with `null`
// as the first argument and a String of compressed javascript as the
// second argument.
//
// compile('... javascript ...', function(err, result) {
// if (err) throw err;
//
// ... do something with result ...
// });
//
// Returns nothing.
function compile(code, next) {
try {
var qs = require('querystring'), http = require('http'), host = 'closure-compiler.appspot.com', body = qs
.stringify({
js_code : code.toString('utf-8'),
compilation_level : 'ADVANCED_OPTIMIZATIONS',
output_format : 'json',
output_info : 'compiled_code'
}), client = http.createClient(80, host).on('error', next), req = client
.request('POST', '/compile', {
'Host' : host,
'Content-Length' : body.length,
'Content-Type' : 'application/x-www-form-urlencoded'
});
req.on('error', next).end(body);
req.on('response', function(res) {
if (res.statusCode != 200)
next(new Error('Unexpected HTTP response: ' + res.statusCode));
else
capture(res, 'utf-8', parseResponse);
});
function parseResponse(err, data) {
err ? next(err) : loadJSON(data,
function(err, obj) {
var error;
if (err)
next(err);
else if ((error = obj.errors || obj.serverErrors
|| obj.warnings))
next(new Error('Failed to compile: '
+ sys.inspect(error)));
else
next(null, obj.compiledCode);
});
}
} catch (err) {
next(err);
}
}
// Convert a Stream to a String.
//
// + input - Stream object
// + encoding - String input encoding
// + next - Function error/success callback
//
// Returns nothing.
function capture(input, encoding, next) {
var buffer = '';
input.on('data', function(chunk) {
buffer += chunk.toString(encoding);
});
input.on('end', function() {
next(null, buffer);
});
input.on('error', next);
}
// Convert JSON.load() to callback-style.
//
// + data - String value to load
// + next - Function error/success callback
//
// Returns nothing.
function loadJSON(data, next) {
var err, obj;
try {
obj = JSON.parse(data);
} catch (x) {
err = x;
}
next(err, obj);
}
exports.build();