MIDI.js/grunt.js

22 lines
368 B
JavaScript
Raw Normal View History

2012-11-21 11:11:19 +01:00
/*
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');
///
};