-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.js
43 lines (37 loc) · 1.22 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
var async = require('async'),
rigger = require('./'),
path = require('path'),
fs = require('fs'),
basePath = path.resolve(__dirname, 'src'),
mkdirp = require('mkdirp'),
outputPath = path.resolve(__dirname),
finder = require('findit').find(basePath),
files = [];
function jsOnly(filename) {
return path.extname(filename).slice(1).toLowerCase() === 'js';
}
finder.on('file', function(file, stat) {
files.push(file);
});
finder.on('end', function() {
async.forEach(
files.filter(jsOnly),
function(file, itemCallback) {
var targetPath = path.resolve(outputPath, file.slice(basePath.length + 1));
console.log('rigging: ' + file);
rigger(
file,
{ output: path.resolve(__dirname) },
function(err, content) {
console.log('writing: ' + targetPath);
mkdirp(path.dirname(targetPath), function(err) {
fs.writeFile(targetPath, content, 'utf8', itemCallback);
});
}
);
},
function(err) {
console.log('done', err);
}
);
});