Skip to content

Commit

Permalink
Increment dependency versions, fix package.json dependency version is…
Browse files Browse the repository at this point in the history
…sue, and rebuild artifacts
  • Loading branch information
esjewett committed Jul 17, 2016
1 parent b797982 commit 6573a88
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"test"
],
"dependencies": {
"crossfilter2": "1.4.0-alpha.05"
"crossfilter2": "1.4.0-alpha.06"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "reductio",
"version": "0.6.2",
"version": "0.6.3",
"description": "Reductio: Crossfilter groupings",
"main": "src/reductio.js",
"directories": {
"test": "test"
},
"dependencies": {
"crossfilter2": "^1.4.0-alpha.05"
"crossfilter2": "^1.4.0-alpha.6"
},
"devDependencies": {
"browserify": "^8.1.1",
Expand Down
20 changes: 10 additions & 10 deletions reductio.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var reductio_build = require('./build.js');
var reductio_accessors = require('./accessors.js');
var reductio_parameters = require('./parameters.js');
var reductio_postprocess = require('./postprocess');
var crossfilter = (typeof window !== "undefined" ? window.crossfilter : typeof global !== "undefined" ? global.crossfilter : null);
var crossfilter = (typeof window !== "undefined" ? window['crossfilter'] : typeof global !== "undefined" ? global['crossfilter'] : null);

function reductio() {
var parameters = reductio_parameters();
Expand Down Expand Up @@ -176,7 +176,7 @@ function accessor_build(obj, p) {

// We can take an accessor function, a boolean, or a string
if( typeof value === 'function' ) {
if(p.sum) console.warn('SUM aggregation is being overwritten by AVG aggregation');
if(p.sum && p.sum !== value) console.warn('SUM aggregation is being overwritten by AVG aggregation');
p.sum = value;
p.avg = true;
p.count = 'count';
Expand Down Expand Up @@ -216,7 +216,7 @@ function accessor_build(obj, p) {
value = accessorifyNumeric(value);

if(typeof value === 'function') {
if(p.valueList) console.warn('VALUELIST accessor is being overwritten by median aggregation');
if(p.valueList && p.valueList !== value) console.warn('VALUELIST accessor is being overwritten by median aggregation');
p.valueList = value;
}
p.median = value;
Expand All @@ -229,7 +229,7 @@ function accessor_build(obj, p) {
value = accessorifyNumeric(value);

if(typeof value === 'function') {
if(p.valueList) console.warn('VALUELIST accessor is being overwritten by median aggregation');
if(p.valueList && p.valueList !== value) console.warn('VALUELIST accessor is being overwritten by min aggregation');
p.valueList = value;
}
p.min = value;
Expand All @@ -242,7 +242,7 @@ function accessor_build(obj, p) {
value = accessorifyNumeric(value);

if(typeof value === 'function') {
if(p.valueList) console.warn('VALUELIST accessor is being overwritten by median aggregation');
if(p.valueList && p.valueList !== value) console.warn('VALUELIST accessor is being overwritten by max aggregation');
p.valueList = value;
}
p.max = value;
Expand All @@ -255,7 +255,7 @@ function accessor_build(obj, p) {
value = accessorify(value);

if( typeof value === 'function' ) {
if(p.sum) console.warn('EXCEPTION accessor is being overwritten by exception count aggregation');
if(p.exceptionAccessor && p.exceptionAccessor !== value) console.warn('EXCEPTION accessor is being overwritten by exception count aggregation');
p.exceptionAccessor = value;
p.exceptionCount = true;
} else {
Expand Down Expand Up @@ -875,7 +875,7 @@ module.exports = reductio_filter;

},{}],14:[function(require,module,exports){
(function (global){
var crossfilter = (typeof window !== "undefined" ? window.crossfilter : typeof global !== "undefined" ? global.crossfilter : null);
var crossfilter = (typeof window !== "undefined" ? window['crossfilter'] : typeof global !== "undefined" ? global['crossfilter'] : null);

var reductio_histogram = {
add: function (a, prior, path) {
Expand Down Expand Up @@ -1045,7 +1045,7 @@ var reductio_min = {
module.exports = reductio_min;
},{}],18:[function(require,module,exports){
(function (global){
var crossfilter = (typeof window !== "undefined" ? window.crossfilter : typeof global !== "undefined" ? global.crossfilter : null);
var crossfilter = (typeof window !== "undefined" ? window['crossfilter'] : typeof global !== "undefined" ? global['crossfilter'] : null);

var reductio_nest = {
add: function (keyAccessors, prior, path) {
Expand Down Expand Up @@ -1306,7 +1306,7 @@ var reductio_sum = {
module.exports = reductio_sum;
},{}],26:[function(require,module,exports){
(function (global){
var crossfilter = (typeof window !== "undefined" ? window.crossfilter : typeof global !== "undefined" ? global.crossfilter : null);
var crossfilter = (typeof window !== "undefined" ? window['crossfilter'] : typeof global !== "undefined" ? global['crossfilter'] : null);

var reductio_value_count = {
add: function (a, prior, path) {
Expand Down Expand Up @@ -1351,7 +1351,7 @@ module.exports = reductio_value_count;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{}],27:[function(require,module,exports){
(function (global){
var crossfilter = (typeof window !== "undefined" ? window.crossfilter : typeof global !== "undefined" ? global.crossfilter : null);
var crossfilter = (typeof window !== "undefined" ? window['crossfilter'] : typeof global !== "undefined" ? global['crossfilter'] : null);

var reductio_value_list = {
add: function (a, prior, path) {
Expand Down
Loading

0 comments on commit 6573a88

Please sign in to comment.