country-region-selector/gruntfile.js

15 lines
298 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-template');
grunt.loadNpmTasks('grunt-contrib-uglify');
var config = {
};
grunt.initConfig(config);
grunt.registerTask('default', ['uglify']);
grunt.registerTask('generate', ['uglify']);
};