Skip to content

Commit b9d6f6f

Browse files
committed
Update tools/README
1 parent 66c8dfe commit b9d6f6f

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

tools/README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
1-
The contents in this subdirectory are used for building web assets.
1+
This directory contains build tools for Shiny.
22

3-
To build, install the requirements (below), then go to this directory and run:
43

5-
```
6-
make
7-
```
4+
## Grunt
85

9-
## Requirements
6+
Grunt is a built tool that runs on node.js. Once node.js is installed, you can install grunt (run from this directory):
107

11-
### UglifyJS
8+
```
9+
sudo npm install -g grunt-cli
10+
npm install grunt
11+
```
1212

13-
UglifyJS is a module for node.js which minifies Javascript files. It should be
14-
installed with the following command (run from this directory):
13+
You will also need to install some modules to run the grunt tasks:
1514

1615
```
17-
npm install uglify-js
16+
npm install grunt-contrib-uglify
17+
npm install grunt-contrib-jshint
1818
```
19-
20-
This will install the UglifyJS into `./node_modules/`.

0 commit comments

Comments
 (0)