ehynds / grunt-remove-logging

Grunt.js task for removing console logging statements

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request: Remove console.log from minified files.

kanakiyajay opened this issue · comments

Currently:

Example minified js file

$(document).ready(function(){console.log("document is ready"),$("#submit").on("click",function(){console.log("Submit Button Clicked")})});

After running it through grunt-remove-logging the output its:

$(document).ready(function(){