File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -36,29 +36,29 @@ Run the unit tests with a local server that supports PHP. No database is require
3636Building jQuery UI
3737---
3838
39- jQuery UI uses the [ grunt ] ( http://github.com/cowboy /grunt ) build system. Building jQuery UI requires node.js and a command line zip program .
39+ jQuery UI uses the [ Grunt ] ( http://github.com/gruntjs /grunt ) build system.
4040
41- Install grunt.
41+ To build jQuery UI, you must have [ node.js ] ( http://nodejs.org/ ) installed and then run the following commands:
4242
43- ` npm install grunt -g `
43+ ``` sh
4444
45- Clone the jQuery UI git repo.
45+ # Install the Grunt CLI
46+ npm install -g grunt-cli
4647
47- ` git clone git://github.com/jquery/jquery-ui.git `
48+ # Clone the jQuery UI git repo
49+ git clone git://github.com/jquery/jquery-ui.git
50+ cd jquery-ui
4851
49- ` cd jquery-ui `
52+ # Install the node module dependencies
53+ npm install
5054
51- Install node modules.
55+ # Run the build task
56+ grunt build
5257
53- ` npm install `
54-
55- Run grunt.
56-
57- ` grunt build `
58-
59- There are many other tasks that can be run through grunt. For a list of all tasks:
60-
61- ` grunt --help `
58+ # There are many other tasks that can be run through Grunt.
59+ # For a list of all tasks:
60+ grunt --help
61+ ```
6262
6363
6464For committers
You can’t perform that action at this time.
0 commit comments