To point you in the right direction, check out the Use as a code pre-processor section of UglifyJS.
I need to research more about how to pass a --define DEVMODE=false flag within the rake assets:precompile, but adjusting your code to wrap console.log in with the DEVMODE boolean as described in the link above should get you the result you're looking for.
Update:
In some file that will load during rake assets:precompile, add the following monkey patch.
class Uglifier
private
def mangle_options
{
"mangle" => @options[:mangle],
"toplevel" => @options[:toplevel],
"defines" => { DEVMODE: ["name", "null"] }, # This line sets DEVMODE
"except" => @options[:except],
"no_functions" => @options[:mangle] == :vars
}
end
end
As I mentioned in a comment below, Uglifier does not support passing a :defines mangle option. You could optionally change the marked line above to "defines" => @options[:defines] and update your config with this line
config.assets.js_compressor = Uglifier.new(defines: { DEVMODE: ["name", "null"] })
When running the rake task, DEVMODE will now be converted to null in your source. Now, given the following code in your Javascript source:
if (typeof DEVMODE === 'undefined') {
DEVMODE = true;
}
if (DEVMODE) {
console.log('some log message');
}
By default (in development mode), DEVMODE will be set to true, causing the console.log() to execute. When rake assets:precompile is run, UglifyJS is going to set DEVMODE to null before compilation/compression begins. When walking over if (null) { it will see that the condition will never evaluate true, and will strip this dead code from the resulting source.
As long as you write your console.log() calls like above or shorthand as
DEVMODE && console.log('some log message');
the console.log() calls will be stripped from the production code. I can see other benefits to this too outside of stripping console.log(), allowing for other development-specific code to coexist with other Javascript in development mode and only development mode.
gsub, but rails never fails to amaze me with useful stuff like this already built in. – bdares Aug 1 '12 at 17:59