UNPKG

error-shelter

Version:

frontend error catch and storage utility for JS apps.

20 lines (15 loc) 379 B
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ uglify: { build: { src: 'errorShelter.js', dest: 'src/errorShelter.min.js' } } }); // Load the plugin that provides the "uglify" task. grunt.loadNpmTasks('grunt-contrib-uglify'); // Default task(s). grunt.registerTask('default', ['uglify']); };