-
Notifications
You must be signed in to change notification settings - Fork 367
/
Copy pathbuild.js
410 lines (347 loc) · 12.9 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
var fs = require("fs");
var path = require("path");
var util = require("util");
var exec = require("child_process").exec;
var terser = require("terser");
var rimraf = require("rimraf");
var jshint = require("jshint");
var archiver = require("archiver");
var FILE_ENCODING = "utf-8";
var indentation = " ";
var buildSpec = {
gitUrl: "https://github.com/timdown/rangy.git",
gitBranch: "master"
};
var buildDir = "dist/";
var gitDir = buildDir + "repository/", srcDir = gitDir + "src/";
var zipDir;
var uncompressedBuildDir;
var coreFilename = "rangy-core.js";
var modules = [
"rangy-classapplier.js",
"rangy-serializer.js",
"rangy-selectionsaverestore.js",
"rangy-textrange.js",
"rangy-highlighter.js"
];
var allScripts = [coreFilename].concat(modules);
var buildVersion;
function concat(fileList, destPath) {
var out = fileList.map(function(filePath) {
return fs.readFileSync(filePath, FILE_ENCODING);
});
fs.writeFileSync(destPath, out.join("\n"), FILE_ENCODING);
}
function copyFileSync(srcFile, destFile, preserveTimestamps) {
var contents = fs.readFileSync(srcFile);
fs.writeFileSync(destFile, contents);
var stat = fs.lstatSync(srcFile);
fs.chmodSync(destFile, stat.mode);
if (preserveTimestamps) {
fs.utimesSync(destFile, stat.atime, stat.mtime)
}
}
function copyFiles(srcDir, destDir, recursive, fileNameTransformer) {
if (fs.existsSync(destDir)) {
if (!fs.statSync(destDir).isDirectory()) {
throw new Error("Destination exists and is not a directory");
}
} else {
fs.mkdirSync(destDir, fs.statSync(srcDir).mode);
}
var files = fs.readdirSync(srcDir);
Array.prototype.forEach.call(files, function(fileName) {
var srcFilePath = path.join(srcDir, fileName);
var destFilePath = path.join(destDir, fileName);
var srcFileInfo = fs.lstatSync(srcFilePath);
if (srcFileInfo.isDirectory()) {
if (recursive) {
copyFiles(srcFilePath, destFilePath, true, fileNameTransformer);
}
} else if (srcFileInfo.isSymbolicLink()) {
throw new Error("Symbolic links are not supported");
} else {
if (fileNameTransformer) {
destFilePath = fileNameTransformer(destFilePath);
}
copyFileSync(srcFilePath, destFilePath);
}
});
}
function copyFilesRecursive(srcDir, destDir, fileNameTransformer) {
copyFiles(srcDir, destDir, true, fileNameTransformer);
}
function deleteBuildDir() {
// Delete the old build directory
if (fs.existsSync(buildDir)) {
rimraf(buildDir, function() {
console.log("Deleted old build directory");
callback();
});
} else {
console.log("No existing build directory");
callback();
}
}
function createBuildDir() {
fs.mkdirSync(buildDir);
fs.mkdirSync(gitDir);
console.log("Created build directory " + path.resolve(buildDir));
callback();
}
function cloneGitRepository() {
var cloneCmd = "git clone " + buildSpec.gitUrl + " " + gitDir;
console.log("Cloning Git repository: " + cloneCmd);
exec(cloneCmd, function(error, stdout, stderr) {
console.log("Cloned Git repository");
callback();
});
}
function copyLocalSourceFiles() {
console.log("Copying local source files");
copyFilesRecursive("src", srcDir);
callback();
}
function getVersion() {
buildVersion = JSON.parse( fs.readFileSync("package.json")).version;
console.log("Got version " + buildVersion + " from package.json");
zipDir = buildDir + "rangy-" + buildVersion + "/";
fs.mkdirSync(zipDir);
uncompressedBuildDir = zipDir + "uncompressed/";
fs.mkdirSync(uncompressedBuildDir);
callback();
}
function indent(str) {
return str.split(/\r?\n/g).join("\n" + indentation).replace( new RegExp("\n" + indentation + "\n", "g"), "\n\n");
}
var globalObjectGetterCode = "/* Ridiculous nonsense to get the global object in any environment follows */(function(f) { return f('return this;')(); })(Function)";
function assembleCoreScript() {
// Read in the list of files to build
var fileNames = ["core.js", "dom.js", "domrange.js", "wrappedrange.js", "wrappedselection.js"];
var files = {};
fileNames.forEach(function(fileName) {
files[fileName] = fs.readFileSync(srcDir + "core/" + fileName, FILE_ENCODING);
});
// Substitute scripts for build directives
var combinedScript = files["core.js"].replace(/\/\*\s?build:includeCoreModule\((.*?)\)\s?\*\//g, function(match, scriptName) {
return indent(files[scriptName]);
});
fs.writeFileSync(uncompressedBuildDir + coreFilename, combinedScript, FILE_ENCODING);
console.log("Assembled core script");
callback();
}
function copyModuleScripts() {
modules.forEach(function(moduleFile) {
var moduleCode = fs.readFileSync(srcDir + "modules/" + moduleFile, FILE_ENCODING);
// Run build directives
moduleCode = moduleCode.replace(/\/\*\s?build:modularizeWithRangyDependency\s?\*\/([\s\S]*?)\/\*\s?build:modularizeEnd\s?\*\//gm, function(match, code) {
//var dependenciesArray = eval(dependencies);
return [
'(function(factory, root) {',
' if (typeof define == "function" && define.amd) {',
' // AMD. Register as an anonymous module with a dependency on Rangy.',
' define(["./rangy-core"], factory);',
' } else if (typeof module != "undefined" && typeof exports == "object") {',
' // Node/CommonJS style',
' module.exports = factory( require("rangy") );',
' } else {',
' // No AMD or CommonJS support so we use the rangy property of root (probably the global variable)',
' factory(root.rangy);',
' }',
'})(function(rangy) {'
].join("\n") + indent(code) + "\n" + indentation + "return rangy;\n}, this);";
});
fs.writeFileSync(uncompressedBuildDir + moduleFile, moduleCode, FILE_ENCODING);
});
console.log("Copied module scripts");
callback();
}
function clean() {
rimraf(gitDir, function() {
console.log("Deleted Git directory");
callback();
});
}
function removeLoggingFromScripts() {
var logCallRegex = /^\s*(\/\/\s*)?log\.(trace|debug|info|warn|error|fatal|time|timeEnd|group|groupEnd)/;
var loggerRegex = /^\s*var\s+log\s*=/;
function removeLogging(file) {
var contents = fs.readFileSync(file, FILE_ENCODING);
var lines = contents.split("\n");
var logLineCount = 0;
var nonLoggingLines = contents.split("\n").filter(function(line) {
if (logCallRegex.test(line) || loggerRegex.test(line)) {
logLineCount++;
return false;
}
return true;
});
console.log("Removed %d logging lines from %s", logLineCount, file);
fs.writeFileSync(file, nonLoggingLines.join("\n"), FILE_ENCODING);
}
allScripts.forEach(function(fileName) {
removeLogging(uncompressedBuildDir + fileName);
});
console.log("Removed logging from scripts");
callback();
}
function substituteBuildVars() {
// Substitute build vars in scripts
function doSubstituteBuildVars(file, buildVars) {
var contents = fs.readFileSync(file, FILE_ENCODING);
contents = contents.replace(/%%build:([^%]+)%%/g, function(matched, buildVarName) {
return buildVars[buildVarName];
});
// Now do replacements specified by build directives
contents = contents.replace(/\/\*\s?build:replaceWith\((.*?)\)\s?\*\/.*?\*\s?build:replaceEnd\s?\*\//g, "$1");
fs.writeFileSync(file, contents, FILE_ENCODING);
}
var date = new Date();
var month = "January,February,March,April,May,June,July,August,September,October,November,December".split(",")[date.getMonth()];
var buildVars = {
version: buildVersion,
date: date.getDate() + " " + month + " " + date.getFullYear(),
year: date.getFullYear()
};
allScripts.forEach(function(fileName) {
doSubstituteBuildVars(uncompressedBuildDir + fileName, buildVars);
});
console.log("Substituted build vars in scripts");
callback();
}
function lint() {
// Run JSHint only on non-library code
function doLint(file) {
var buf = fs.readFileSync(file, FILE_ENCODING);
// Remove Byte Order Mark
buf = buf.replace(/^\uFEFF/g, "");
jshint.JSHINT(buf, {
boss: true,
loopfunc: true,
scripturl: true,
eqeqeq: false,
browser: true,
plusplus: false,
'-W041': true,
'-W018': true
});
var errors = jshint.JSHINT.errors;
if (errors && errors.length) {
console.log("Found " + errors.length + " JSHint errors");
errors.forEach(function(error) {
if (error) {
console.log("%s at %d on line %d: %s\n%s", error.id, error.character, error.line, error.reason, error.evidence);
}
});
}
}
allScripts.forEach(function(fileName) {
doLint(uncompressedBuildDir + fileName);
});
console.log("JSHint done");
callback();
}
function minify() {
function getLicence(srcFile) {
var contents = fs.readFileSync(srcFile, FILE_ENCODING);
var result = /^\s*\/\*\*[\s\S]*?\*\//.exec(contents);
return result ? result[0] : "";
}
// Uglify
function uglify(src, dest) {
var licence = getLicence(src);
var terserOptions = {
format: {
ascii_only: true
}
};
return terser.minify(fs.readFileSync(src, FILE_ENCODING), terserOptions).then(function(final_code) {
fs.writeFileSync(dest, licence + "\r\n" + final_code.code, FILE_ENCODING);
})
}
Promise.all(allScripts.map(function(fileName) {
return uglify(uncompressedBuildDir + fileName, zipDir + fileName);
})).then(function() {
console.log("Minified scripts");
callback();
}).catch(function(ex) {
console.log("Uglify failed: " + ex, JSON.stringify(ex));
});
}
function createArchiver(fileExtension, archiveCreatorFunc) {
return function() {
var compressedFileName = "rangy-" + buildVersion + "." + fileExtension;
var output = fs.createWriteStream(buildDir + compressedFileName);
var archive = archiveCreatorFunc();
output.on("close", function () {
console.log("Compressed " + archive.pointer() + " total bytes to " + compressedFileName);
callback();
});
archive.on("error", function(err){
throw err;
});
archive.pipe(output);
archive.glob("**/*", {
cwd: buildDir,
ignore: ["*.tar", "*.gz", "*.tgz", "*.zip"]
}, {})
archive.finalize();
}
}
var zip = createArchiver("zip", function() {
return archiver.create("zip");
});
var tarGz = createArchiver("tar.gz", function() {
return archiver.create("tar", {
gzip: true,
gzipOptions: {
level: 1
}
});
});
function copyToLib() {
copyFilesRecursive(uncompressedBuildDir, "lib/");
callback();
}
function copyToRelease() {
var destDir = "../rangy-release/";
if (fs.existsSync(destDir)) {
copyFiles(zipDir, destDir, false, function(filePath) {
return filePath.replace(/\.js$/, ".min.js");
});
copyFiles(uncompressedBuildDir, destDir);
}
callback();
}
/*--------------------------------------------------------------------------------------------------------------------*/
// Get command line arguments
var sourceFilesGetter = (process.argv.length >= 3 && process.argv[2] == "freshCheckout") ?
cloneGitRepository : copyLocalSourceFiles;
/*--------------------------------------------------------------------------------------------------------------------*/
// Start the build
var actions = [
deleteBuildDir,
createBuildDir,
sourceFilesGetter,
getVersion,
assembleCoreScript,
copyModuleScripts,
clean,
removeLoggingFromScripts,
substituteBuildVars,
lint,
minify,
zip,
tarGz,
copyToLib,
copyToRelease
];
function callback() {
if (actions.length) {
actions.shift()();
} else {
console.log("Done");
}
}
console.log("Starting build...");
callback();