UNPKG

backbone-events-standalone

Version:
22 lines (18 loc) 486 B
module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), uglify: { options: { banner: '/*! <%= pkg.name %> <%= pkg.version %> <%= grunt.template.today("yyyy-mm-dd") %> */\n', report: 'min' }, dist: { files: { '<%= pkg.name %>.min.js': ['<%= pkg.name %>.js'] } } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['uglify']); };