Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
719fa61
added build files
christophe-g Nov 3, 2017
0bd1774
Merge branch 'master' of github.com:PolymerEl/universe
christophe-g Nov 3, 2017
1ba899d
new build
christophe-g Nov 3, 2017
f450537
updated to corssfilter 1.4.3 and reductio 0.6.3
christophe-g Nov 28, 2017
f94b286
remove with predicate; make sure filters are reapplied on remove an add
christophe-g Nov 29, 2017
ccaaad7
Merge branch 'master' of github.com:crossfilter/universe
christophe-g Oct 18, 2018
bba3b49
Merge remote-tracking branch 'upstream/master' into latestVersion
christophe-g Oct 18, 2018
05da6e2
crossfulter 1.4.6
christophe-g Oct 18, 2018
8c02b0f
Merge branch 'latestVersion'
christophe-g Oct 18, 2018
bb6b24c
make test run before migration
christophe-g Oct 5, 2019
eeb49ee
migrated to ES6. Test passing
christophe-g Oct 5, 2019
5c170c2
replaced browserify by rollup. Make build work
christophe-g Oct 5, 2019
90546be
replaced local dependencies
christophe-g Oct 22, 2019
1933ff2
updated crossfilter latest (1.5.2)
christophe-g Jan 27, 2020
9c5e738
updated crossfilter latest (^1.5.2)
christophe-g Jan 27, 2020
e248eb6
Linting errors; replaced yarn by pnpm
christophe-g Jul 17, 2020
de7bc09
added @ranfdev/deepobj; base set and get on deepobj
christophe-g Jul 17, 2020
6c4177b
Prevent crossfilter to fail when data is missing. Replaced missing va…
christophe-g Jul 17, 2020
733a891
removed isNaN in accessor
christophe-g Jul 18, 2020
a10820d
added all, allFiltered, size, isElementFiltered method
christophe-g Jul 29, 2020
7f12026
bump dependencies
christophe-g Jan 18, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './src/universe.js';
44 changes: 30 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,43 @@
"version": "0.8.1",
"description": "The fastest way to query and explore multivariate datasets",
"main": "src/universe.js",
"module": "main.js",
"directories": {
"test": "test"
},
"files": ["src", "universe.*"],
"files": [
"src",
"main.js",
"universe.*"
],
"dependencies": {
"crossfilter2": "1.4.1",
"reductio": "^0.6.2"
"@ranfdev/deepobj": "^1.0.2",
"crossfilter2": "^1.5.4",
"reductio": "git+https://github.com/preignition/reductio.git#ES6module"
},
"devDependencies": {
"ava": "^0.15.2",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"uglify-js": "^2.7.0"
"ava": "2",
"esm": "3.2.25",
"rollup": "1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "4",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-terser": "5"
},
"ava": {
"require": [
"esm"
]
},
"scripts": {
"lint": "eslint src",
"test": "yarn lint && ava --verbose",
"browserify": "browserify ./src/universe.js -d -s universe -o universe.js",
"min": "uglifyjs universe.js -o universe.min.js",
"build": "npm run browserify && npm run min && echo 'Done building.'",
"_test": "pnpm lint && ava --verbose",
"test": "ava --verbose",
"__build": "npm run browserify && npm run min && echo 'Done building.'",
"build": "rollup -c rollup.config.js && echo 'Done building.'",
"watch": "onchange 'src/**' -i -w -- npm run build",
"prepublish": "npm run build",
"postpublish": "git push --tags"
"prepublishOnly": "pnpm run build",
"postpublish": "git push && git push --tags"
},
"repository": {
"type": "git",
Expand All @@ -39,7 +53,9 @@
"filtering",
"data"
],
"author": "Tanner Linsley",
"author": {
"name": "Tanner Linsley"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/crossfilter/universe/issues"
Expand Down
Loading