Skip to content

Commit

Permalink
Prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdfekete committed Feb 22, 2018
1 parent 95b0b0e commit 6cf2f2c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 51 deletions.
15 changes: 4 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ JS_COMPILER = $(NODE_PATH)/uglify-js/bin/uglifyjs
#JS_TESTER = $(NODE_PATH)/vows/bin/vows --nocolor -v

all: \
reorder.v1.0.2.js \
reorder.v1.0.2.min.js \
package.json
reorder.v1.js \
reorder.v1.min.js

reorder.v1.0.2.js: \
reorder.v1.js: \
src/core.js \
src/utils.js \
src/aliases.js \
Expand Down Expand Up @@ -76,11 +75,5 @@ install: package.json
mkdir -p node_modules
npm install

package.json: src/package.js
@rm -f $@
node src/package.js > $@
@chmod a-w $@


clean:
rm -rf reorder*.js package.json node_modules
rm -rf reorder*.js node_modules
3 changes: 0 additions & 3 deletions reorder.v1.0.2.min.js

This file was deleted.

3 changes: 2 additions & 1 deletion reorder.v1.0.2.js → reorder.v1.js
Original file line number Diff line number Diff line change
Expand Up @@ -1853,7 +1853,6 @@ reorder.optimal_leaf_order = function() {
distanceMatrix = null;
return optimal_order;
}
optimal_leaf_order.order = orderFull;

function optimal_leaf_order(matrix) {
if (distanceMatrix === null)
Expand All @@ -1863,6 +1862,8 @@ reorder.optimal_leaf_order = function() {
.distanceMatrix(distanceMatrix);
return orderFull(hcluster(matrix));
}
optimal_leaf_order.order = orderFull;
optimal_leaf_order.reorder = optimal_leaf_order;

optimal_leaf_order.distance = function(x) {
if (!arguments.length) return distance;
Expand Down
Empty file added reorder.v1.min.js
Empty file.
3 changes: 2 additions & 1 deletion src/optimal_leaf_order.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ reorder.optimal_leaf_order = function() {
distanceMatrix = null;
return optimal_order;
}
optimal_leaf_order.order = orderFull;

function optimal_leaf_order(matrix) {
if (distanceMatrix === null)
Expand All @@ -118,6 +117,8 @@ reorder.optimal_leaf_order = function() {
.distanceMatrix(distanceMatrix);
return orderFull(hcluster(matrix));
}
optimal_leaf_order.order = orderFull;
optimal_leaf_order.reorder = optimal_leaf_order;

optimal_leaf_order.distance = function(x) {
if (!arguments.length) return distance;
Expand Down
35 changes: 0 additions & 35 deletions src/package.js

This file was deleted.

0 comments on commit 6cf2f2c

Please sign in to comment.