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
36
36
Building jQuery UI
37
37
---
38
38
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.
40
40
41
- Install grunt.
41
+ To build jQuery UI, you must have [ node.js ] ( http://nodejs.org/ ) installed and then run the following commands:
42
42
43
- ` npm install grunt -g `
43
+ ``` sh
44
44
45
- Clone the jQuery UI git repo.
45
+ # Install the Grunt CLI
46
+ npm install -g grunt-cli
46
47
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
48
51
49
- ` cd jquery-ui `
52
+ # Install the node module dependencies
53
+ npm install
50
54
51
- Install node modules.
55
+ # Run the build task
56
+ grunt build
52
57
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
+ ```
62
62
63
63
64
64
For committers
You can’t perform that action at this time.
0 commit comments