javascript - combining multiple .js files into one in a build process -
Any suggestions on the combination of multiple .js files in 1 (for the production process).
Yuicompressor will do it?
YUI Compressor can do this very easily, just send it in file names and give it a file Output as.
For example
> yuicompressor-2.4.2 file1.js file2.js file3.js -o combined.min.js
Comments
Post a Comment