diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-10-28 15:58:33 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-10-28 15:58:33 -0400 |
commit | dcac8c1f29cd718c949c1b2c48681a90b0f647ed (patch) | |
tree | 417325b1d7c56154ec735b24b2d2211f2c757aba /build | |
parent | 94b852f1155d89ff52f3c59da736406b239dcca1 (diff) | |
download | jquery-ui-dcac8c1f29cd718c949c1b2c48681a90b0f647ed.tar.gz jquery-ui-dcac8c1f29cd718c949c1b2c48681a90b0f647ed.zip |
Tests: Added ability to run tests against minified files via ?min=1
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml index aef5e5fb3..1e5ab842b 100644 --- a/build/build.xml +++ b/build/build.xml @@ -148,6 +148,13 @@ <fileset dir="${ui.dir}/themes/base/images" /> </copy> + <!-- make a copy of the minified files for use in tests --> + <copy todir="dist" file="${min.dir}/jquery-ui.min.js" /> + <copy todir="dist/theme" file="${dist.dir}/themes/base/minified/jquery-ui.min.css" /> + <copy todir="dist/theme/images" > + <fileset dir="${ui.dir}/themes/base/images" /> + </copy> + <echo message="Minified ui/ built." /> </target> |