forked from mudcube/MIDI.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
47 lines (44 loc) · 1.15 KB
/
Gruntfile.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
/*
----------------------------------------------------------
Build environment
----------------------------------------------------------
1) Install NodeJS:
http://nodejs.org/
2) Install dev dependencies
npm install
3) Install Grunt CLI globally
npm install grunt-cli -g
----------------------------------------------------------
*/
module.exports = function (grunt) {
grunt.initConfig({
concat: {
'build/MIDI.js': [
// 'js/color/spaceW3.js', // optional
'js/midi/audioDetect.js',
'js/midi/gm.js',
'js/midi/loader.js',
'js/midi/player.js',
'js/midi/plugin.audiotag.js',
'js/midi/plugin.webaudio.js',
'js/midi/plugin.webmidi.js',
// 'js/midi/synesthesia.js', // optional
'js/util/dom_request_xhr.js', // req when using XHR
'js/util/dom_request_script.js', // req otherwise
// 'js/widget/loader.js', // optional
'inc/polyfill/Base64.js',
'inc/polyfill/base64binary.js'
]
},
uglify: {
'build/MIDI.min.js': [
'build/MIDI.js'
]
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
///
grunt.registerTask('default', ['concat', 'uglify']);
///
};