country-region-selector/gruntfile.js

25 lines
476 B
JavaScript
Raw Normal View History

2014-03-23 05:31:26 +00:00
module.exports = function(grunt) {
"use strict";
// load what we need
grunt.loadNpmTasks('grunt-contrib-uglify');
var config = {
2014-03-25 03:08:39 +00:00
uglify: {
standalone: {
files: {
2014-03-25 03:53:49 +00:00
'source/crs.min.js': 'source/crs.js',
'source/jquery.crs.min.js': 'source/jquery.crs.js'
2014-03-25 03:08:39 +00:00
},
options: {
report: "min",
compress: true
}
}
}
2014-03-23 05:31:26 +00:00
};
grunt.initConfig(config);
grunt.registerTask('default', ['uglify']);
grunt.registerTask('generate', ['uglify']);
};