My current bundle config concatenates all the script files and minifies it and generates a single file.but is not removing the console.log lines from the js files,how to add configuration to remove console.log() lines from the files.my current config setting is
bundles.Add(
new Bundle(
"~/Scripts/js-bundle",
new IBundleTransform[] {new JsMinify() }).Include(
"~/Scripts/script1.js",
"~/Scripts/script2.js",
"~/Scripts/script3.js"))
I tried adding LogRemoverTransform() but i am getting some error