Skip to content

Commit 38be82d

Browse files
committed
Merge branch 'master' into indicator-fixes
2 parents 0160e16 + 9927079 commit 38be82d

File tree

155 files changed

+41916
-836
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+41916
-836
lines changed

.circleci/test.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ case $1 in
4545
set_tz
4646

4747
SUITE=$(circleci tests glob "$ROOT/test/jasmine/tests/*" | circleci tests split)
48-
npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky --showSkipped || EXIT_STATE=$?
48+
npm run test-jasmine -- $SUITE --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
4949

5050
exit $EXIT_STATE
5151
;;
@@ -55,7 +55,7 @@ case $1 in
5555

5656
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=5 --tag=gl | circleci tests split))
5757
for s in ${SHARDS[@]}; do
58-
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --showSkipped
58+
retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --doNotFailOnEmptyTestSuite
5959
done
6060

6161
exit $EXIT_STATE
@@ -67,7 +67,7 @@ case $1 in
6767
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=1 --tag=flaky | circleci tests split))
6868

6969
for s in ${SHARDS[@]}; do
70-
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI --showSkipped
70+
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI
7171
done
7272

7373
exit $EXIT_STATE

dist/topojson/africa_110m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/africa_50m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/asia_110m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/asia_50m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/europe_110m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/europe_50m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/north-america_110m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/north-america_50m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/south-america_110m.json

+1-1
Large diffs are not rendered by default.

dist/topojson/south-america_50m.json

+1-1
Large diffs are not rendered by default.

lib/choroplethmapbox.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* Copyright 2012-2019, Plotly, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
module.exports = require('../src/traces/choroplethmapbox');

lib/densitymapbox.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* Copyright 2012-2019, Plotly, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
module.exports = require('../src/traces/densitymapbox');

lib/index-mapbox.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
var Plotly = require('./core');
1212

1313
Plotly.register([
14-
require('./scattermapbox')
14+
require('./scattermapbox'),
15+
require('./choroplethmapbox'),
16+
require('./densitymapbox')
1517
]);
1618

1719
module.exports = Plotly;

lib/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,14 @@ Plotly.register([
4444

4545
require('./pointcloud'),
4646
require('./heatmapgl'),
47+
4748
require('./parcoords'),
49+
4850
require('./parcats'),
51+
4952
require('./scattermapbox'),
53+
require('./choroplethmapbox'),
54+
require('./densitymapbox'),
5055

5156
require('./sankey'),
5257
require('./indicator'),

0 commit comments

Comments
 (0)