aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-08-27 13:00:56 -0400
committerScott González <scott.gonzalez@gmail.com>2013-08-27 13:00:56 -0400
commitcca2daafec0817e423aec39a251e6eacdd4d611b (patch)
tree3489045a9cb29a674437ef717d59d522a9f903f5 /README.md
parent441b7fc8c1e7651a84ebcd182f6b9e3b3a088fd0 (diff)
downloadjquery-ui-cca2daafec0817e423aec39a251e6eacdd4d611b.tar.gz
jquery-ui-cca2daafec0817e423aec39a251e6eacdd4d611b.zip
README: Updated build instructions.
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 16 insertions, 16 deletions
diff --git a/README.md b/README.md
index 33b3907a5..d02a93936 100644
--- a/README.md
+++ b/README.md
@@ -36,29 +36,29 @@ Run the unit tests with a local server that supports PHP. No database is require
Building jQuery UI
---
-jQuery UI uses the [grunt](http://github.com/cowboy/grunt) build system. Building jQuery UI requires node.js and a command line zip program.
+jQuery UI uses the [Grunt](http://github.com/gruntjs/grunt) build system.
-Install grunt.
+To build jQuery UI, you must have [node.js](http://nodejs.org/) installed and then run the following commands:
-`npm install grunt -g`
+```sh
-Clone the jQuery UI git repo.
+# Install the Grunt CLI
+npm install -g grunt-cli
-`git clone git://github.com/jquery/jquery-ui.git`
+# Clone the jQuery UI git repo
+git clone git://github.com/jquery/jquery-ui.git
+cd jquery-ui
-`cd jquery-ui`
+# Install the node module dependencies
+npm install
-Install node modules.
+# Run the build task
+grunt build
-`npm install`
-
-Run grunt.
-
-`grunt build`
-
-There are many other tasks that can be run through grunt. For a list of all tasks:
-
-`grunt --help`
+# There are many other tasks that can be run through Grunt.
+# For a list of all tasks:
+grunt --help
+```
For committers