10000 Require unminified mapbox-gl for unminified bundles and improve compression of minified bundles by archmoj · Pull Request #5449 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Require unminified mapbox-gl for unminified bundles and improve compression of minified bundles #5449

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 2 commits into from
Jan 28, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
require unminified mapbox-gl
  • Loading branch information
archmoj committed Jan 28, 2021
commit 23c863c4103e100ad2233b195cd4870e6b0a19ff
2 changes: 1 addition & 1 deletion src/plots/mapbox/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var mapboxgl = require('mapbox-gl');
var mapboxgl = require('mapbox-gl/dist/mapbox-gl-unminified');

var Lib = require('../../lib');
var strTranslate = Lib.strTranslate;
Expand Down
2 changes: 1 addition & 1 deletion src/plots/mapbox/mapbox.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var mapboxgl = require('mapbox-gl');
var mapboxgl = require('mapbox-gl/dist/mapbox-gl-unminified');

var Lib = require('../../lib');
var geoUtils = require('../../lib/geo_location_utils');
Expand Down
0