Skip to content

Commit 467087f

Browse files
author
David Long
committedOct 17, 2013
Updated documentation
1 parent 1ba5bb0 commit 467087f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ nv.d3.css: Makefile
6969

7070

7171
clean:
72-
rm -rf nv.d3.js nv.d3.min.js nv.d3.css nv.d3.min.css
72+
rm -rf nv.d3*.js nv.d3*.css

‎README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,15 @@ The easiest way to install UglifyJS and CSSMin is via npm. Run `npm install -g u
6868
Once you have the `uglifyjs` and `cssmin` commands available, running `make` from your
6969
fork's root directory will rebuild both `nv.d3.js` and `nv.d3.min.js`.
7070

71-
Without UglifyJS of CSSMin, you won't get the minified versions when running make.
71+
make # build nv.d3.js and nv.d3.css and minify
72+
make nv.d3.js # Build nv.d3.js
73+
make nv.d3.min.js # Minify nv.d3.js into nv.d3.min.js
74+
make nv.d3.css # Build nv.d3.css
75+
make nv.d3.min.css # Minify nv.d3.css into nv.d3.min.css
76+
make clean # Delete nv.d3.*js and nv.d3.*css
77+
78+
79+
*Without UglifyJS of CSSMin, you won't get the minified versions when running make.**
7280

7381
### Using Grunt
7482

0 commit comments

Comments
 (0)
Please sign in to comment.