0

I am using Dojo Build system to build my project and minify the files. I am getting an error during the build and am unable to locate the source. So I want to skip the compilation/optimization step during the build and only need the minification to work.

Is this possible? and if yes, how?

THanks

4

1 回答 1

1

Minification involves compilation, because system actually compiles your JavaScript to internal representation, optimizes this machine-readable form and then outputs it back, generating new JS source from it. Therefore no, you can't minify without compilation.

于 2012-08-28T15:28:24.960 回答