add grunt.js, update color libraries
This commit is contained in:
parent
0560bae4f5
commit
112fc7a688
3 changed files with 35 additions and 18 deletions
22
grunt.js
Normal file
22
grunt.js
Normal 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');
|
||||
///
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue