add grunt.js, update color libraries

This commit is contained in:
Michael Deal 2012-11-21 02:11:19 -08:00
parent 0560bae4f5
commit 112fc7a688
3 changed files with 35 additions and 18 deletions

22
grunt.js Normal file
View file

@ -0,0 +1,22 @@
/*
Build environment
----------------------------------------
1) Install NodeJS:
http://nodejs.org/
2) Install Grunt
npm install grunt
*/
module.exports = function (grunt) {
grunt.initConfig({
concat: {
'build/MIDI.js': "./js/**"
},
min: {
'build/MIDI.min.js': ['build/MIDI.js']
}
});
///
grunt.registerTask('default', 'concat min');
///
};