I'm wondering what the best way to minify and concatenate all my js scripts in one in a build process is. I've got the actual minifying working, but now need to set a reference in my html page to the minified file. In the dev version it has references to five files which get concatenated. Should I juts xmlpoke or something like that? Are there more elegant techniques?
|
|
|||||
|
|
|
the way i usally do it is concat all the files together, minify using yui:
and then just have one header that references the compressed file, and used disable.js.compression in dev so that your files dont get compressed. |
||
|
|
|
|
In your file which includes the script files, do this (using which ever server side technology you use)
Then use the "replace" ant target in your build file (assuming you use ant) to replace @IS_DEV@ and @MINIFIED_FILE_PATH@
|
||
|
|
