how to have part of some JS code NOT being minified by minifiers

540 Views Asked by At

There are many tools out there to "compress" more or less javascript files by mangling variable names, removing comments, etc...

But how to "tell" them to NOT process a part of a file, from this file. I need to "tell" them somehow, by even rewriting that part another way, or putting some tags in comments, ... to NOT process some parts of my files.

The easiest but very ugly solution I found was to put my code in a string and eval it. But if there is any other solution I'd love to know it because eval is UGLY!

UPDATE:

please due to my requirements, those are not possible answers:

  • the file HAVE to be minified
  • it needs to be done FROM WITHIN the source code
2

There are 2 best solutions below

1
On

Edit, Updated

Tried utilizing comments at yuicompressor ?

/*! function someFunction(i) {i = "abc"; return i} */
// minified stuff 

See Comment Starting with /*!, gist , Online JavaScript/CSS Compressor


Try

/*! (function someFunction(i) {document.write(i); return i}(123)) */
    // minified stuff
    console.log("abc");
var scripts = document.scripts
, script = scripts[scripts.length - 1].innerText
.match(/\/\*!+.*\*\//g)[0].replace(/\/\*!|\*\//g, "").trim();
eval(script);

/*! (function someFunction(i) {document.write(i); return i}(123)) */
    // minified stuff
console.log("abc");
var scripts = document.scripts
, script = scripts[scripts.length - 1].innerText
.match(/\/\*!+.*\*\//g)[0].replace(/\/\*!|\*\//g, "").trim();
eval(script);

See Degrading Script Tags

5
On

if you are using gulp, there is a module called gulp-tap that you can use to grab the file, split it between some type of identifier, minify the parts you want, and then concatenate it back together. I'm sure that grunt or other task runners have similar capabilities