Skip to content

Commit 25fd2e4

Browse files
committed
Remove bubleify
1 parent a053c26 commit 25fd2e4

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"3d-view": "^2.0.0",
5757
"@plotly/d3-sankey": "^0.5.0",
5858
"alpha-shape": "^1.0.0",
59-
"bubleify": "^1.0.0",
6059
"color-rgba": "^1.1.1",
6160
"convex-hull": "^1.0.3",
6261
"country-regex": "^1.1.0",

tasks/util/browserify_wrapper.js

-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ var fs = require('fs');
22
var path = require('path');
33

44
var browserify = require('browserify');
5-
var bubleify = require('bubleify');
65
var minify = require('minify-stream');
76

87
var constants = require('./constants');
@@ -47,8 +46,6 @@ module.exports = function _bundle(pathToIndex, pathToBundle, opts) {
4746

4847
var b = browserify(pathToIndex, browserifyOpts);
4948

50-
b.transform(bubleify, constants.bubleifyOptions);
51-
5249
var bundleStream = b.bundle(function(err) {
5350
if(err) throw err;
5451
});

tasks/util/constants.js

-14
Original file line numberDiff line numberDiff line change
@@ -95,20 +95,6 @@ module.exports = {
9595
sourceMap: false
9696
},
9797

98-
bubleifyOptions: {
99-
target: {
100-
chrome: 48,
101-
firefox: 44,
102-
edge: 12
103-
},
104-
transforms: {
105-
arrow: true,
106-
defaultParameter: false,
107-
dangerousForOf: true,
108-
},
109-
sourceMap: false
110-
},
111-
11298
licenseDist: [
11399
'/**',
114100
'* plotly.js v' + pkg.version,

0 commit comments

Comments
 (0)