-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.js
167 lines (135 loc) · 3.72 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
// # Build script using Node.js
//
// Single script build,used as a lightweight alternative
// when a build platform (grunt/gulp wtc.) feels like overkill
//
// - Dependencies: NPM/Node.js
// - Conventions:
// * code is in a lib/ folder with a main.js as the main context (closure)
// * a package.json on the root contains all the info about the lib: name, description, author, license
// * compiled files are saved in a build folder
// settings
var FILE_ENCODING = 'utf-8',
EOL = '\n';
// Dependencies
var cli = require('commander'),
uglify = require("uglify-js"),
jshint = require('jshint'),
handlebars = require('hbs'),
fs = require('fs'),
zlib = require('zlib');
// will generate a CSV if package info contains multiple licenses
handlebars.registerHelper('license', function(items){
items = items.map(function(val){
return val.type;
});
return items.join(', ');
});
// Logic
// - read module name from package file
var package = JSON.parse( fs.readFileSync('package.json', FILE_ENCODING) ); // condition the existance of package.json or component.json...
var name = package.name;
// - list files in the lib folder
//var src = libFiles();
// - concatinate all files
var src = [
'lib/core.js',
'lib/attributes.js',
'lib/css.js',
'lib/animations.js',
'lib/effects.js',
'lib/events.js',
'lib/manipulation.js',
'lib/markup.js',
'lib/selectors.js',
'lib/terrain.js',
'lib/webgl.js',
'lib/utils.js'
];
// - concatinate all files
concat({
src: src,
dest: 'build/'+ name +'.js'
});
// - Validate js
lint('build/'+ name +'.js', function(){
// - Create / save minified file
minify('build/'+ name +'.js', 'build/'+ name +'-min.js');
});
//
// Methods
function concat(opts) {
var fileList = opts.src;
var distPath = opts.dest;
var lib = fileList.map(function(filePath){
return fs.readFileSync(filePath, FILE_ENCODING);
});
var wrapper = fs.readFileSync('lib/main.js', FILE_ENCODING);
var template = handlebars.compile( wrapper );
//reuse package.json data and add build date
var data = package;
data.lib = lib.join(EOL);
data.build_date = (new Date()).toUTCString();
// Save uncompressed file
fs.writeFileSync(distPath, template(data), FILE_ENCODING);
console.log(' '+ distPath +' built.');
}
function minify(srcPath, distPath) {
/*
var
jsp = uglyfyJS.parser,
pro = uglyfyJS.uglify,
ast = jsp.parse( fs.readFileSync(srcPath, FILE_ENCODING) );
ast = pro.ast_mangle(ast);
ast = pro.ast_squeeze(ast);
*/
var result = uglify.minify(srcPath, {
mangle: true,
output: {
comments : /@name|@author|@cc_on|@url|@license/
}
});
fs.writeFileSync(distPath, result.code, FILE_ENCODING);
console.log(' '+ distPath +' built.');
return;
// gzip
zlib.gzip(result.code, function (error, bytes) {
if (error) throw error;
fs.writeFileSync(distPath, bytes, FILE_ENCODING);
console.log(' '+ distPath +' built.');
});
}
function lint(path, callback) {
var buf = fs.readFileSync(path, 'utf-8');
// remove Byte Order Mark
buf = buf.replace(/^\uFEFF/, '');
jshint.JSHINT(buf);
var nErrors = jshint.JSHINT.errors.length;
if (nErrors) {
// ruff output of errors (for now)
console.log(jshint.JSHINT.errors);
console.log(' Found %j lint errors on %s, do you want to continue?', nErrors, path);
cli.choose(['no', 'yes'], function(i){
if (i) {
process.stdin.destroy();
if(callback) callback();
} else {
process.exit(0);
}
});
} else if (callback) {
callback();
}
}
function libFiles(){
var src = [];
var files = fs.readdirSync( "lib/" );
// folter only javascript files
for( var i in files ){
var file = files[i];
// exclude certain files and main.js
if( file.substr(0, 1) == "." || file.substr(-3) !== ".js" || file == "main.js" ) continue;
src.push( "lib/"+ file );
}
return src;
}