File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -69,4 +69,4 @@ nv.d3.css: Makefile
69
69
70
70
71
71
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
Original file line number Diff line number Diff line change @@ -68,7 +68,15 @@ The easiest way to install UglifyJS and CSSMin is via npm. Run `npm install -g u
68
68
Once you have the ` uglifyjs ` and ` cssmin ` commands available, running ` make ` from your
69
69
fork's root directory will rebuild both ` nv.d3.js ` and ` nv.d3.min.js ` .
70
70
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.**
72
80
73
81
### Using Grunt
74
82
You can’t perform that action at this time.
0 commit comments