MIDI.js/grunt.js
2012-11-21 02:11:19 -08:00

22 lines
368 B
JavaScript

/*
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');
///
};