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
package/package.json
CHANGED
package/webpack/config.worker.js
CHANGED
|
@@ -23,7 +23,8 @@ var config = merge(configShared, {
|
|
|
23
23
|
output: {
|
|
24
24
|
library: 'Pusher',
|
|
25
25
|
path: path.join(__dirname, '../dist/worker'),
|
|
26
|
-
filename: filename
|
|
26
|
+
filename: filename,
|
|
27
|
+
libraryTarget: 'umd'
|
|
27
28
|
},
|
|
28
29
|
resolve: {
|
|
29
30
|
// in order to import the appropriate runtime.ts
|
package/.vscode/settings.json
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"yaml.customTags": [
|
|
3
|
-
"!And",
|
|
4
|
-
"!If",
|
|
5
|
-
"!Not",
|
|
6
|
-
"!Equals",
|
|
7
|
-
"!Or",
|
|
8
|
-
"!FindInMap",
|
|
9
|
-
"!Base64",
|
|
10
|
-
"!Cidr",
|
|
11
|
-
"!Ref",
|
|
12
|
-
"!Sub",
|
|
13
|
-
"!GetAtt",
|
|
14
|
-
"!GetAZs",
|
|
15
|
-
"!ImportValue",
|
|
16
|
-
"!Select",
|
|
17
|
-
"!Split",
|
|
18
|
-
"!Join",
|
|
19
|
-
"!And sequence",
|
|
20
|
-
"!If sequence",
|
|
21
|
-
"!Not sequence",
|
|
22
|
-
"!Equals sequence",
|
|
23
|
-
"!Or sequence",
|
|
24
|
-
"!FindInMap sequence",
|
|
25
|
-
"!Join sequence",
|
|
26
|
-
"!Sub sequence",
|
|
27
|
-
"!ImportValue sequence",
|
|
28
|
-
"!Select sequence",
|
|
29
|
-
"!Split sequence"
|
|
30
|
-
]
|
|
31
|
-
}
|