Skip to content

Bump dependencies to use bubleify v2 #5084

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

Merged
merged 4 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
141 changes: 57 additions & 84 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@
"dependencies": {
"@plotly/d3-sankey": "0.7.2",
"@plotly/d3-sankey-circular": "0.33.1",
"@plotly/point-cluster": "^3.1.9",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/centroid": "^6.0.2",
"alpha-shape": "^1.0.0",
"bubleify": "^2.0.0",
"canvas-fit": "^1.5.0",
"color-normalize": "^1.5.0",
"color-rgba": "^2.1.1",
Expand Down Expand Up @@ -103,13 +105,12 @@
"ndarray": "^1.0.19",
"ndarray-linear-interpolate": "^1.0.0",
"parse-svg-path": "^0.1.2",
"point-cluster": "^3.1.8",
"polybooljs": "^1.2.0",
"regl": "^1.6.1",
"regl-error2d": "^2.0.8",
"regl-line2d": "^3.0.15",
"regl-scatter2d": "^3.1.8",
"regl-splom": "^1.0.8",
"regl-error2d": "^2.0.11",
"regl-line2d": "^3.0.18",
"regl-scatter2d": "3.1.9",
"regl-splom": "^1.0.12",
"right-now": "^1.0.0",
"robust-orientation": "^1.1.3",
"sane-topojson": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/traces/scattergl/calc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

'use strict';

var cluster = require('point-cluster');
var cluster = require('@plotly/point-cluster');

var Lib = require('../../lib');
var AxisIDs = require('../../plots/cartesian/axis_ids');
Expand Down
2 changes: 1 addition & 1 deletion src/traces/scatterpolargl/plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

'use strict';

var cluster = require('point-cluster');
var cluster = require('@plotly/point-cluster');
var isNumeric = require('fast-isnumeric');

var scatterglPlot = require('../scattergl/plot');
Expand Down