country-region-selector/gruntfile.js
2014-03-22 22:31:26 -07:00

15 lines
298 B
JavaScript

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