File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
- The contents in this subdirectory are used for building web assets .
1
+ This directory contains build tools for Shiny .
2
2
3
- To build, install the requirements (below), then go to this directory and run:
4
3
5
- ```
6
- make
7
- ```
4
+ ## Grunt
8
5
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):
10
7
11
- ### UglifyJS
8
+ ```
9
+ sudo npm install -g grunt-cli
10
+ npm install grunt
11
+ ```
12
12
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:
15
14
16
15
```
17
- npm install uglify-js
16
+ npm install grunt-contrib-uglify
17
+ npm install grunt-contrib-jshint
18
18
```
19
-
20
- This will install the UglifyJS into ` ./node_modules/ ` .
You can’t perform that action at this time.
0 commit comments