Skip to content

Commit

Permalink
Merge branch '2.9.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Jul 31, 2012
2 parents fb86373 + 540d3ac commit 108d65d
Show file tree
Hide file tree
Showing 37 changed files with 10,319 additions and 12,496 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

NODE_PATH ?= ./node_modules
JS_COMPILER = $(NODE_PATH)/uglify-js/bin/uglifyjs
JS_BEAUTIFIER = $(NODE_PATH)/uglify-js/bin/uglifyjs -b -i 2 -nm -ns
JS_TESTER = $(NODE_PATH)/vows/bin/vows

all: \
Expand Down Expand Up @@ -74,6 +75,7 @@ d3.core.js: \
src/core/formatPrefix.js \
src/core/ease.js \
src/core/event.js \
src/core/transform.js \
src/core/interpolate.js \
src/core/uninterpolate.js \
src/core/rgb.js \
Expand Down Expand Up @@ -107,6 +109,7 @@ d3.core.js: \
src/core/transition.js \
src/core/transition-select.js \
src/core/transition-selectAll.js \
src/core/transition-filter.js \
src/core/transition-attr.js \
src/core/transition-style.js \
src/core/transition-text.js \
Expand All @@ -116,7 +119,6 @@ d3.core.js: \
src/core/transition-each.js \
src/core/transition-transition.js \
src/core/timer.js \
src/core/transform.js \
src/core/mouse.js \
src/core/touches.js \
src/core/noop.js
Expand Down Expand Up @@ -225,7 +227,7 @@ test: all

d3%.js: Makefile
@rm -f $@
cat $(filter %.js,$^) > $@
cat $(filter %.js,$^) | $(JS_BEAUTIFIER) > $@
@chmod a-w $@

package.json: src/package.js
Expand Down
Loading

0 comments on commit 108d65d

Please sign in to comment.