Skip to content

Commit 6ec62cf

Browse files
2 parents e9045ad + fba9423 commit 6ec62cf

File tree

9 files changed

+13
-19
lines changed

9 files changed

+13
-19
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"echarts": "4.5.0",
117117
"elasticsearch": "16.5.0",
118118
"fetch-ie8": "1.5.0",
119-
"fetch-jsonp": "1.0.6",
119+
"fetch-jsonp": "1.1.3",
120120
"jsonsql": "0.2.5",
121121
"leaflet": "1.5.1",
122122
"lodash.remove": "^4.7.0",
@@ -126,9 +126,9 @@
126126
"ol": "6.1.1",
127127
"pbf": "3.0.2",
128128
"proj4": "2.5.0",
129-
"promise-polyfill": "6.0.2",
129+
"promise-polyfill": "8.1.3",
130130
"three": "0.92.0",
131-
"xlsx": "0.15.1",
131+
"xlsx": "0.15.3",
132132
"xml-js": "1.6.11"
133133
},
134134
"pre-commit": [

src/classic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"dependencies": {
1616
"mapv": "2.0.38",
17-
"xlsx": "0.15.1",
17+
"xlsx": "0.15.3",
1818
"@supermap/iclient-common": "10.0.0"
1919
}
2020
}

src/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"dependencies": {
1616
"elasticsearch": "16.5.0",
1717
"fetch-ie8": "1.5.0",
18-
"fetch-jsonp": "1.0.6",
19-
"promise-polyfill": "6.0.2",
18+
"fetch-jsonp": "1.1.3",
19+
"promise-polyfill": "8.1.3",
2020
"lodash.topairs": "4.3.0"
2121
}
2222
}

src/common/util/FetchRequest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* Copyright© 2000 - 2019 SuperMap Software Co.Ltd. All rights reserved.
22
* This program are made available under the terms of the Apache License, Version 2.0
33
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
4-
import "./PromisePolyfill"
5-
import 'fetch-ie8'
4+
import 'promise-polyfill/dist/polyfill';
5+
import 'fetch-ie8';
66
import fetchJsonp from 'fetch-jsonp';
77
import {
88
SuperMap
@@ -427,4 +427,4 @@ SuperMap.Util.RequestJSONPPromise = {
427427
});
428428
return me.issue(config);
429429
}
430-
};
430+
};

src/common/util/PromisePolyfill.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/leaflet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
"jsonsql": "0.2.5",
2424
"pbf": "3.0.2",
2525
"proj4": "2.5.0",
26-
"xlsx": "0.15.1"
26+
"xlsx": "0.15.3"
2727
}
2828
}

src/mapboxgl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"mapv": "2.0.38",
1919
"mapbox-gl": "1.3.1",
2020
"three": "0.92.0",
21-
"xlsx": "0.15.1",
21+
"xlsx": "0.15.3",
2222
"@supermap/iclient-common": "10.0.0",
2323
"canvg": "1.5.3",
2424
"xml-js": "1.6.8"

src/openlayers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"ol": "6.1.1",
2121
"@supermap/iclient-common": "10.0.0",
2222
"proj4": "2.5.0",
23-
"xlsx": "0.15.1",
23+
"xlsx": "0.15.3",
2424
"canvg": "1.5.3",
2525
"lodash.remove": "^4.7.0"
2626
}

test/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = function (config) {
2525
[require('babelify'), {
2626
global: true,
2727
presets: ["@babel/preset-env"],
28-
ignore: ["../src/classic/libs/**", "../test/libs/**", /\/node_modules\/(?!ol\/)/],
28+
ignore: ["../src/classic/libs/**", "../test/libs/**", "../node_modules/mapbox-gl/**","../node_modules/three/**","../node_modules/xlsx/**","../node_modules/@turf/**","../node_modules/lodash/**"],
2929
plugins: ['istanbul']
3030
}],
3131
[require('browserify-css'), { global: true }],

0 commit comments

Comments
 (0)