pusher-js 7.0.4 → 7.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/dist/node/pusher.js +2 -2
- package/dist/react-native/pusher.js +2 -2
- package/dist/web/pusher-with-encryption.js +2 -2
- package/dist/web/pusher-with-encryption.min.js +2 -2
- package/dist/web/pusher.js +2 -2
- package/dist/web/pusher.min.js +2 -2
- package/dist/worker/pusher-with-encryption.worker.js +14 -4
- package/dist/worker/pusher-with-encryption.worker.js.map +1 -1
- package/dist/worker/pusher-with-encryption.worker.min.js +2 -2
- package/dist/worker/pusher-with-encryption.worker.min.js.map +1 -1
- package/dist/worker/pusher.worker.js +14 -4
- package/dist/worker/pusher.worker.js.map +1 -1
- package/dist/worker/pusher.worker.min.js +2 -2
- package/dist/worker/pusher.worker.min.js.map +1 -1
- package/package.json +1 -1
- package/webpack/config.worker.js +2 -1
- package/.vscode/settings.json +0 -31
- package/tags +0 -393
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Pusher JavaScript Library v7.0.
|
|
2
|
+
* Pusher JavaScript Library v7.0.5
|
|
3
3
|
* https://pusher.com/
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020, Pusher
|
|
6
6
|
* Released under the MIT licence.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
10
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
11
|
+
module.exports = factory();
|
|
12
|
+
else if(typeof define === 'function' && define.amd)
|
|
13
|
+
define([], factory);
|
|
14
|
+
else if(typeof exports === 'object')
|
|
15
|
+
exports["Pusher"] = factory();
|
|
16
|
+
else
|
|
17
|
+
root["Pusher"] = factory();
|
|
18
|
+
})(window, function() {
|
|
19
|
+
return /******/ (function(modules) { // webpackBootstrap
|
|
11
20
|
/******/ // The module cache
|
|
12
21
|
/******/ var installedModules = {};
|
|
13
22
|
/******/
|
|
@@ -888,7 +897,7 @@ function safeJSONStringify(source) {
|
|
|
888
897
|
|
|
889
898
|
// CONCATENATED MODULE: ./src/core/defaults.ts
|
|
890
899
|
var Defaults = {
|
|
891
|
-
VERSION: "7.0.
|
|
900
|
+
VERSION: "7.0.5",
|
|
892
901
|
PROTOCOL: 7,
|
|
893
902
|
wsPort: 80,
|
|
894
903
|
wssPort: 443,
|
|
@@ -4167,4 +4176,5 @@ worker_runtime.setup(pusher_Pusher);
|
|
|
4167
4176
|
|
|
4168
4177
|
/***/ })
|
|
4169
4178
|
/******/ ]);
|
|
4179
|
+
});
|
|
4170
4180
|
//# sourceMappingURL=pusher.worker.js.map
|