Browse Source

deps: update url-polyfill dependency

The previous location no longer exists. This is a fork of the original package,
which is actively maintained.

Fixes: #3304
j8
Saúl Ibarra Corretgé 6 years ago
parent
commit
3d6e18394e

+ 5
- 4
package-lock.json View File

3003
         "sdp-transform": "2.3.0"
3003
         "sdp-transform": "2.3.0"
3004
       }
3004
       }
3005
     },
3005
     },
3006
+    "@webcomponents/url": {
3007
+      "version": "0.7.1",
3008
+      "resolved": "https://registry.npmjs.org/@webcomponents/url/-/url-0.7.1.tgz",
3009
+      "integrity": "sha512-9oFDpuZ+tAogjPYQPhNEX86Npzb73A4kv9DOPsSO9aWoWgoevoP6eKx+TKMwO8BJxtTpSM9nKenHQTJ56SP2Cw=="
3010
+    },
3006
     "abbrev": {
3011
     "abbrev": {
3007
       "version": "1.1.1",
3012
       "version": "1.1.1",
3008
       "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
3013
       "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
15838
         }
15843
         }
15839
       }
15844
       }
15840
     },
15845
     },
15841
-    "url-polyfill": {
15842
-      "version": "github:github/url-polyfill#39734186de44612bc5a16eb25f5407adcc5b2e7c",
15843
-      "from": "github:github/url-polyfill#39734186de44612bc5a16eb25f5407adcc5b2e7c"
15844
-    },
15845
     "use": {
15846
     "use": {
15846
       "version": "3.1.0",
15847
       "version": "3.1.0",
15847
       "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",
15848
       "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",

+ 1
- 1
package.json View File

34
     "@atlaskit/tabs": "4.0.1",
34
     "@atlaskit/tabs": "4.0.1",
35
     "@atlaskit/theme": "2.4.0",
35
     "@atlaskit/theme": "2.4.0",
36
     "@atlaskit/tooltip": "9.1.1",
36
     "@atlaskit/tooltip": "9.1.1",
37
+    "@webcomponents/url": "0.7.1",
37
     "autosize": "1.18.13",
38
     "autosize": "1.18.13",
38
     "es6-iterator": "2.0.3",
39
     "es6-iterator": "2.0.3",
39
     "es6-symbol": "3.1.1",
40
     "es6-symbol": "3.1.1",
74
     "redux": "4.0.0",
75
     "redux": "4.0.0",
75
     "redux-thunk": "2.2.0",
76
     "redux-thunk": "2.2.0",
76
     "styled-components": "1.4.6",
77
     "styled-components": "1.4.6",
77
-    "url-polyfill": "github:github/url-polyfill#39734186de44612bc5a16eb25f5407adcc5b2e7c",
78
     "uuid": "3.1.0",
78
     "uuid": "3.1.0",
79
     "xmldom": "0.1.27"
79
     "xmldom": "0.1.27"
80
   },
80
   },

+ 1
- 1
react/features/base/lib-jitsi-meet/native/polyfills-browser.js View File

1
 import Iterator from 'es6-iterator';
1
 import Iterator from 'es6-iterator';
2
 import BackgroundTimer from 'react-native-background-timer';
2
 import BackgroundTimer from 'react-native-background-timer';
3
-import 'url-polyfill'; // Polyfill for URL constructor
3
+import '@webcomponents/url'; // Polyfill for URL constructor
4
 
4
 
5
 import { Platform } from '../../react';
5
 import { Platform } from '../../react';
6
 
6
 

Loading…
Cancel
Save