UNPKG

grunt-remove-logging

Version:

Grunt task to remove console logging statements

18 lines (14 loc) 295 B
/*global module:false*/ module.exports = function(grunt) { "use strict"; grunt.loadTasks("../tasks"); grunt.initConfig({ removelogging: { dist: { src: "js/app.js", dest: "js/output.js" } } }); grunt.registerTask("default", ["removelogging"]); };