forked from montulli/GrooveScribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulp.filelist.js
45 lines (40 loc) · 1.22 KB
/
gulp.filelist.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
var generalAppFiles = [
'./app/js/share.min.js',
'./app/js/groove_writer.js',
'./app/js/groove_utils.js',
'./app/js/grooves.js'
];
module.exports = {
app_files: function () {
'use strict';
// The individual app builds (i.e. dashboard, conferencing, etc.) insert
// the proper ./App.appName.js (i.e. App.conferencing) file at index 0 of the genearalAppFiles array.
return generalAppFiles;
},
js_lib_src: [
//'./js/abc2svg-1.js', // script to render ABC to an SVG image - http://moinejf.free.fr/js/
//'./js/jsmidgen.js', // jsmidgen for generating a midi file - https://github.com/dingram/jsmidgen
'./MIDI.js/js/MIDI/AudioDetect.js',
'./MIDI.js/js/MIDI/LoadPlugin.js',
'./MIDI.js/js/MIDI/Plugin.js',
'./MIDI.js/js/MIDI/Player.js',
'./MIDI.js/inc/DOMLoader.XMLHttp.js',
'./MIDI.js/inc/jasmid/stream.js',
'./MIDI.js/inc/jasmid/midifile.js',
'./MIDI.js/inc/jasmid/replayer.js',
'./MIDI.js/inc/Base64.js',
'./MIDI.js/inc/base64binary.js'
],
css_src: function () {
'use strict';
return [
'./css/*.css'
];
},
image_src: function() {
'use strict';
return [
'./images/**/{,*/}*'
];
}
};