-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
417 lines (388 loc) · 10.8 KB
/
index.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
411
412
413
414
415
416
417
var fs = require('fs')
// Init the steamer namespace.
var steamer = {
"broccoli" : {},
"sourceTrees" : [],
"trees" : [],
"init" : {},
"dir" : {},
"css" : {},
"file": {},
"img" : {},
"js" : {},
"steam" : null
};
module.exports = steamer
// External Broccoli modules: used
steamer.broccoli.base64Css = require('broccoli-base64-css')
steamer.broccoli.bower = require('broccoli-bower')
steamer.broccoli.cleanCss = require('broccoli-clean-css')
steamer.broccoli.env = require('broccoli-env').getEnv()
steamer.broccoli.es6Concatenator = require('broccoli-es6-concatenator')
steamer.broccoli.filter = require('broccoli-filter')
steamer.broccoli.imagemin = require('broccoli-imagemin')
steamer.broccoli.mergeTrees = require('broccoli-merge-trees')
steamer.broccoli.sass = require('broccoli-sass')
steamer.broccoli.staticCompiler = require('broccoli-static-compiler')
steamer.broccoli.uglifyJs = require('broccoli-uglify-js')
// External Broccoli modules: unused
steamer.broccoli.cachingWriter = require('broccoli-caching-writer')
steamer.broccoli.concat = require('broccoli-concat')
steamer.broccoli.moreCss = require('broccoli-more-css')
var helper = {}
helper.getAnnotations = function(content, tag, mode, tgt) {
mode = mode || "default"
// Extract a value from the front of the string.
function getValue(orig) {
var v = orig.trimLeft()
var m, rest = v
if (v.charAt(0) == '"') {
v = v.match(/^"((?:\\"|.)*?)"/)[0]
rest = rest.substr(v.length)
}
else if (v.charAt(0) == '{') {
rest = v.substr(1).trimLeft()
v = '{'
while (true) {
m = rest.charAt(0)
if ("}" == m) {
v = v + "}"
rest = rest.substr(1)
break
}
else if (",:".contains(m)) {
v = v + m
rest = rest.substr(1).trimLeft()
}
else {
m = getValue(rest)
v = v + m.value
rest = rest.substr(m.length).trimLeft()
}
}
}
else if (v.charAt(0) == '[') {
rest = v.substr(1).trimLeft()
v = '['
while (true) {
m = rest.charAt(0)
if ("]" == m) {
v = v + "]"
rest = rest.substr(1)
break
}
else if (",".contains(m)) {
v = v + m
rest = rest.substr(1).trimLeft()
}
else {
m = getValue(rest)
v = v + m.value
rest = rest.substr(m.length).trimLeft()
}
}
}
else {
v = v.split(/[\s;,]/).shift()
rest = rest.substr(v.length)
}
return {
"value" : v,
"length" : (orig.length - rest.length)
};
}
function getValueParsed(v) {
v = getValue(v).value
if (!/^[a-zA-Z]/.test(v) || /^(true|false)$/.test(v)) {
v = JSON.parse(v)
}
return v
}
var ret = []
var found = content.split('@' + tag + ' ').forEach(function(v, i) {
if (i == 0) {
return
}
switch (mode) {
case 'assign':
var tmp = v.split('=', 2)
i = tmp[0].trim()
v = getValueParsed(tmp[1])
ret[i] = v
if (typeof tgt == 'object') {
tgt[i] = v
}
break
case 'default':
default:
v = getValueParsed(v)
ret.push(v)
break
}
});
return ret
};
helper.readFileForgiving = function(path) {
try {
var data = fs.readFileSync(path) + ""
return data
} catch (err) {
if (err.message.indexOf('ENOENT') == -1) {
console.log(" ERROR: " + err.message);
}
}
return ""
};
steamer.steam = function() {
return steamer.broccoli.mergeTrees(steamer.trees, { overwrite: true })
};
steamer.init.bower = function() {
steamer.sourceTrees = steamer.sourceTrees.concat(steamer.broccoli.bower())
return this
};
steamer.init.dir = function(inputDir, outputDir) {
steamer.sourceTrees.push(
steamer.broccoli.staticCompiler(inputDir, {
srcDir: '/',
destDir: outputDir
})
);
return this
};
steamer.init.path = function(inputDir) {
steamer.sourceTrees.push(inputDir)
return this
};
steamer.init.done = function() {
steamer.sourceTrees = new steamer.broccoli.mergeTrees(steamer.sourceTrees, { overwrite: true })
return steamer
};
steamer.dir.copy = function(inputDir, outputDir) {
steamer.trees.push(
steamer.broccoli.staticCompiler(inputDir, {
srcDir: '/',
destDir: outputDir
})
);
return this
};
steamer.dir.exists = function(dir) {
try {
fs.statSync(dir).isDirectory()
return true
} catch (e) {
if (e.code !== 'ENOENT') {
throw e
}
return false
}
};
/**
* Compile SASS to CSS
*/
steamer.css.sass = function(inputFile, outputFile) {
var ALLOW_SOURCEMAPS = false
//Also supports imagePath, precision
//https://github.com/joliss/broccoli-sass
var css = steamer.broccoli.sass([steamer.sourceTrees], inputFile, outputFile, {
"sourceComments":false,
"outputStyle":"compressed",
"sourceMap":(ALLOW_SOURCEMAPS && steamer.broccoli.env != 'production')
})
if (!ALLOW_SOURCEMAPS || steamer.broccoli.env != 'production') {
// Minify and process imports.
css = steamer.broccoli.cleanCss(css, {
"relativeTo":"2015"
})
// Convert small images to base64 URLs
css = steamer.broccoli.base64Css(css, {
imagePath: '.',
fontPath: '.',
maxFileSize: 4096,
extensions: ['css'],
fileTypes: ['png', 'jpg', 'jpeg', 'gif', 'svg'],
assetsFromTree: false
});
// Minify again (with a different engine) to remove comments from imports
// WARNING: morecss breaks the @media queries.
// css = morecss(css)
}
steamer.trees.push(css)
return this
};
steamer.file.exists = function(path) {
try {
fs.statSync(path).isFile()
return true
} catch (e) {
if (e.code !== 'ENOENT') {
throw e
}
return false
}
};
/**
* Optimize and copy image assets from one folder to another.
*/
steamer.img.copy = function (inputFolder, outputFolder) {
var image_options = {
interlaced: true,
optimizationLevel: 3,
progressive: true,
lossyPNG: false
};
var imageTree = steamer.broccoli.staticCompiler(inputFolder, {
// files: ['**/*'],
srcDir: '/',
destDir: outputFolder
})
imageTree = steamer.broccoli.imagemin(imageTree, image_options)
steamer.trees.push(imageTree)
return this
};
/**
* Compile a single JS file.
* Supports @steamer.prepend
*/
steamer.js.compile = function(inputFile, outputFile, options) {
options = options || {}
// Process any prepends
var content = fs.readFileSync(inputFile) + ""
var prepends = helper.getAnnotations(content, 'steamer.prepend');
prepends.push(inputFile)
steamer.js.combine(prepends, outputFile)
// Create the tree.
var js = null;
//Combine JS
//https://github.com/joliss/broccoli-es6-concatenator
js = steamer.broccoli.es6Concatenator(steamer.sourceTrees, {
ignoredModules: [],
inputFiles: [],
legacyFilesToAppend: prepends,
wrapInEval: false,
outputFile: outputFile
})
// Extract the definitions
var defs = {
DEBUG : (steamer.broccoli.env == "development")
};
prepends.forEach(function(path){
helper.getAnnotations(helper.readFileForgiving(path), 'define', 'assign', defs)
});
console.log(outputFile + " constants = " + JSON.stringify(defs));
// Process the concatenated output.
postprocessor.prototype = Object.create(steamer.broccoli.filter.prototype)
postprocessor.prototype.constructor = postprocessor
function postprocessor(inputTree, options) {
if (!(this instanceof postprocessor)) return new postprocessor(inputTree, options)
steamer.broccoli.filter.call(this, inputTree, options)
this.options = options || {}
}
postprocessor.prototype.extensions = ['js']
postprocessor.prototype.targetExtension = 'js'
postprocessor.prototype.processString = function (content, relativePath) {
result = content
var matches, remove;
var cont = true
while (cont) {
cont = false
// Float headers to the top
matches = result.match(/[,}]?steamer.header\(\s*([\"'])((?:\\\1|.)*?)\1\s*\),?/)
if (matches) {
remove = matches[0]
if (remove.charAt(0) == '}') {
remove = remove.substr(1);
}
else if (remove.charAt(0) == remove.substr(-1) && remove.charAt(0) == ',') {
remove = remove.substr(1)
}
result = matches[2] + result.replace(remove, "")
// console.log("Extracted header: " + matches[2]);
cont = true
}
// Sink footers to the bottom
matches = result.match(/[,}]?steamer.footer\(\s*([\"'])((?:\\\1|.)*?)\1\s*\),?/)
if (matches) {
remove = matches[0]
if (remove.charAt(0) == '}') {
remove = remove.substr(1);
}
else if (remove.charAt(0) == remove.substr(-1) && remove.charAt(0) == ',') {
remove = remove.substr(1)
}
result = result.replace(remove, "") + matches[2]
// console.log("Extracted footer: " + matches[2]);
cont = true
}
}
return result
}
// Apply the custom logic.
js = postprocessor(js, options)
// Uglify/minify the JS
js = steamer.broccoli.uglifyJs(js, {
mangle: true,
compress: {
// http://lisperator.net/uglifyjs/compress
// "hoist_funs": false, // 2015-02-17: This configuration caused a 'strict' error in Firefox
"loops": false,
"unused": false,
"global_defs":defs
},
output: {
// http://lisperator.net/uglifyjs/codegen
"ascii_only": true
}
})
steamer.trees.push(js)
return this
}
/**
* Combine multiple JS files into a single output file.
*/
steamer.js.combine = function (inputFiles, outputFile) {
if (typeof inputFiles == 'string') {
inputFiles = [inputFiles]
}
// Extract definitions from all JS files.
var defs = {
DEBUG : (steamer.broccoli.env == "development")
};
inputFiles.forEach(function(inputFile){
helper.getAnnotations(helper.readFileForgiving(inputFile), 'define', 'assign', defs)
});
console.log(outputFile + " constants = " + JSON.stringify(defs));
// Create the tree.
var js = null;
//Combine and minimize JS.
//https://github.com/joliss/broccoli-es6-concatenator
js = steamer.broccoli.es6Concatenator(steamer.sourceTrees, {
// Prepend contents of loader.js
// loaderFile: 'loader.js',
ignoredModules: [
// 'ember/resolver'
],
inputFiles: [
// 'appkit/**/*.js'
],
legacyFilesToAppend: inputFiles,
wrapInEval: false,
outputFile: outputFile
})
js = steamer.broccoli.uglifyJs(js, {
mangle: true,
compress: {
// http://lisperator.net/uglifyjs/compress
// "hoist_funs": false, // 2015-02-17: This configuration caused a 'strict' error in Firefox
"loops": false,
"unused": false,
"global_defs":defs
},
output: {
// http://lisperator.net/uglifyjs/codegen
"ascii_only": true
}
})
steamer.trees.push(js)
return this
}