mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-13 03:50:02 -04:00
26 lines
586 B
JavaScript
26 lines
586 B
JavaScript
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
|
|
concat: {
|
|
dist: {
|
|
src: ['src/**/*.js'],
|
|
dest: 'dist/gameboy.js'
|
|
}
|
|
},
|
|
|
|
uglify: {
|
|
dist: {
|
|
files: {
|
|
"dist/gameboy.min.js": ["dist/gameboy.js"]
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
|
|
grunt.registerTask('default', ['concat', 'uglify']);
|
|
};
|