Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: density-based point size #143

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Next Next commit
Initial working density-based point size
Also updated a bunch of third party dependencies including KDBush from v3 to v4
  • Loading branch information
flekschas committed May 29, 2023
commit 3bec1dc020e54881c8a2af3d124f8c03ad57449b
2,852 changes: 1,686 additions & 1,166 deletions package-lock.json

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"pretest": "npm run lint",
"start": "vite --port=3000",
"test": "rollup -c ./rollup.test.config.mjs | tape-run --render='tap-spec'",
"test": "rollup -c ./rollup.test.config.mjs | tape-run --browser='electron' --render='tap-spec'",
"watch": "rollup -cw"
},
"dependencies": {
"@flekschas/utils": "^0.30.1",
"dom-2d-camera": "~2.2.5",
"gl-matrix": "~3.4.3",
"kdbush": "~3.0.0",
"kdbush": "~4.0.2",
"lodash-es": "~4.17.21",
"pub-sub-es": "~2.0.1",
"regl": "~2.1.0",
Expand All @@ -48,41 +48,42 @@
"regl": "~2.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/core": "^7.21.5",
"@babel/plugin-transform-regenerator": "^7.21.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "^18.14.6",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/node": "^18.16.3",
"acorn": "^8.8.2",
"apache-arrow": "^11.0.0",
"browser-env": "^3.3.0",
"d3-axis": "^3.0.0",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"eslint": "^8.35.0",
"electron": "^24.1.3",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"esm": "^3.2.25",
"gh-pages": "^5.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"merge": "^2.1.1",
"prettier": "^2.8.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^3.18.0",
"rollup": "^3.21.1",
"rollup-plugin-filesize": "^10.0.0",
"tap-spec": "^5.0.0",
"tape-run": "^10.0.0",
"typescript": "~4.9.5",
"vite": "^4.1.4",
"vite": "^4.3.3",
"vite-plugin-virtual-html-template": "^1.1.0",
"zora": "^4.1.0"
},
Expand Down
1 change: 1 addition & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const COLOR_BG_IDX = 3;
export const COLOR_NUM_STATES = 4;
export const FLOAT_BYTES = Float32Array.BYTES_PER_ELEMENT;
export const GL_EXTENSIONS = [
'angle_instanced_arrays',
'OES_texture_float',
'OES_element_index_uint',
'WEBGL_color_buffer_float',
Expand Down
Loading