How to create a custom jquery ui file

I unlocked the latest jQuery ui release from github and changed the code, and now I want to create it in order to create compiled code like google code . I see that in , which says: build.xml/build

<!--
    jQuery UI Release!

    Call task called 'deploy-release' to build a full release.
    The release built will be stored on 'dist' dir.
-->

I do not know how to call deploy-release. What should I do to generate a compiled javascript file?

+3
source share
4 answers

If you don't like using what happens above ... you can minimize your JavaScript by cutting and pasting directly into the Google Closure Compiler .

0
source

build.xml Ant, Ant. , build/release/prepare-release :

# Run the build
echo "Running build..."
ant

, Ant.

+3

Take a look at the documentation for jQuery . The build process is the same for the jQuery user interface.

+2
source

Instructions here

From the root of jQuery-ui repo:

cd build

ant

You must currently have Java, Ant, and Node.js installed for it to work. I recommend using NVM to install Node.

Update: the link above is broken, and new build instructions are in README on github: https://github.com/jquery/jquery-ui

+1
source

All Articles