Skip to content

Commit fe47e13

Browse files
committed
Expose lifecycle information to filter accessor function, adjust API with lifecycle information if you are using Crossfilter2
1 parent 6fd487a commit fe47e13

24 files changed

+179
-149
lines changed

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reductio",
33
"main": "reductio.js",
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"homepage": "https://github.com/esjewett/reductio",
66
"authors": [
77
"Ethan Jewett"
@@ -18,6 +18,6 @@
1818
"test"
1919
],
2020
"dependencies": {
21-
"crossfilter": "^1.3.7"
21+
"crossfilter2": "v2.0.0-alpha.03"
2222
}
2323
}

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var bump = require('gulp-bump');
1111
var karma = require('gulp-karma');
1212

1313
var testFiles = [
14-
'node_modules/crossfilter/crossfilter.min.js',
14+
'node_modules/crossfilter2/crossfilter.min.js',
1515
'node_modules/lodash/index.js',
1616
'reductio.min.js',
1717
'test/**/*.spec.js'

karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function(config) {
55
frameworks: ['jasmine'],
66

77
files: [
8-
'node_modules/crossfilter/crossfilter.min.js',
8+
'node_modules/crossfilter2/crossfilter.min.js',
99
'node_modules/lodash/index.js',
1010
'reductio.min.js',
1111
'test/**/*.spec.js'

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "reductio",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Reductio: Crossfilter groupings",
55
"main": "src/reductio.js",
66
"directories": {
77
"test": "test"
88
},
99
"dependencies": {
10-
"crossfilter": "^1.3.7"
10+
"crossfilter2": "^2.0.0-alpha.03"
1111
},
1212
"devDependencies": {
1313
"browserify": "^8.1.1",
@@ -38,7 +38,7 @@
3838
"crossfilter"
3939
],
4040
"author": "Ethan Jewett",
41-
"license": "Apache 2.0",
41+
"license": "Apache-2.0",
4242
"bugs": {
4343
"url": "https://github.com/esjewett/reductio/issues"
4444
},

0 commit comments

Comments
 (0)