-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.js
32 lines (27 loc) · 810 Bytes
/
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
var interleave = require('interleave'),
fs = require('fs'),
aliases = {
'eve': 'github://DmitryBaranovskiy/eve/eve.js',
'eve-remote': '/development/projects/DamonOehlman/eve-remote/eve-remote.js',
'deck.js': 'github://imakewebthings/deck.js/',
'deckmirror': 'github://iros/deck.js-codemirror/',
'keymaster': 'github://madrobby/keymaster/keymaster.js',
'underscore': 'github://documentcloud/underscore/underscore.js?v=1.1.7'
};
// build each of the builds
interleave('src', {
path: 'assets/client',
aliases: aliases
});
/*
interleave('src/plugins', {
multi: 'pass',
path: 'assets/plugins',
config: config
});
*/
// build each of the themse
interleave('src/themes', {
path: 'assets/client/themes',
aliases: aliases
});