@aws-amplify/pubsub 4.4.10-next.41 → 4.4.10-next.45
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 +8 -0
- package/package.json +109 -112
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.5.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@4.5.9...@aws-amplify/pubsub@4.5.10) (2022-10-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-amplify/pubsub
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [4.5.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@4.5.8...@aws-amplify/pubsub@4.5.9) (2022-10-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-amplify/pubsub
|
package/package.json
CHANGED
|
@@ -1,114 +1,111 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
]
|
|
112
|
-
},
|
|
113
|
-
"gitHead": "f6ee89f54b4176f680529bfdb7205b3a29cf3be2"
|
|
2
|
+
"name": "@aws-amplify/pubsub",
|
|
3
|
+
"version": "4.4.10-next.45+ec82d5c8d",
|
|
4
|
+
"description": "Pubsub category of aws-amplify",
|
|
5
|
+
"main": "./lib/index.js",
|
|
6
|
+
"module": "./lib-esm/index.js",
|
|
7
|
+
"typings": "./lib-esm/index.d.ts",
|
|
8
|
+
"react-native": {
|
|
9
|
+
"./lib/index": "./lib-esm/index.js"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": [
|
|
12
|
+
"./lib/PubSub.js",
|
|
13
|
+
"./lib-esm/PubSub.js"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "tslint 'src/**/*.ts' && jest -w 1 --coverage",
|
|
20
|
+
"build-with-test": "npm run clean && npm test && tsc && webpack",
|
|
21
|
+
"build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js",
|
|
22
|
+
"build:esm": "node ./build es6",
|
|
23
|
+
"build:cjs:watch": "node ./build es5 --watch",
|
|
24
|
+
"build:esm:watch": "node ./build es6 --watch",
|
|
25
|
+
"build": "npm run clean && npm run build:esm && npm run build:cjs",
|
|
26
|
+
"clean": "rimraf lib-esm lib dist",
|
|
27
|
+
"format": "echo \"Not implemented\"",
|
|
28
|
+
"lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
|
|
29
|
+
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 87.63"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/aws-amplify/amplify-js.git"
|
|
34
|
+
},
|
|
35
|
+
"author": "Amazon Web Services",
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/aws/aws-amplify/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://aws-amplify.github.io/",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/zen-observable": "^0.8.0",
|
|
43
|
+
"cpx": "^1.5.0"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"lib",
|
|
47
|
+
"lib-esm",
|
|
48
|
+
"src"
|
|
49
|
+
],
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@aws-amplify/auth": "4.6.2-next.45+ec82d5c8d",
|
|
52
|
+
"@aws-amplify/cache": "4.0.51-next.45+ec82d5c8d",
|
|
53
|
+
"@aws-amplify/core": "4.6.2-next.45+ec82d5c8d",
|
|
54
|
+
"graphql": "15.8.0",
|
|
55
|
+
"paho-mqtt": "^1.1.0",
|
|
56
|
+
"tslib": "^2.0.0",
|
|
57
|
+
"uuid": "^3.2.1",
|
|
58
|
+
"zen-observable-ts": "0.8.19"
|
|
59
|
+
},
|
|
60
|
+
"jest": {
|
|
61
|
+
"globals": {
|
|
62
|
+
"ts-jest": {
|
|
63
|
+
"diagnostics": false,
|
|
64
|
+
"tsConfig": {
|
|
65
|
+
"lib": [
|
|
66
|
+
"es5",
|
|
67
|
+
"es2015",
|
|
68
|
+
"dom",
|
|
69
|
+
"esnext.asynciterable",
|
|
70
|
+
"es2017.object"
|
|
71
|
+
],
|
|
72
|
+
"allowJs": true
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
|
|
76
|
+
"testPathIgnorePatterns": [
|
|
77
|
+
"__tests__/helpers.ts"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"transform": {
|
|
81
|
+
"^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
|
|
82
|
+
},
|
|
83
|
+
"testPathIgnorePatterns": [
|
|
84
|
+
"__tests__/helpers.ts"
|
|
85
|
+
],
|
|
86
|
+
"moduleFileExtensions": [
|
|
87
|
+
"ts",
|
|
88
|
+
"tsx",
|
|
89
|
+
"js",
|
|
90
|
+
"json",
|
|
91
|
+
"jsx"
|
|
92
|
+
],
|
|
93
|
+
"testEnvironment": "jsdom",
|
|
94
|
+
"testURL": "http://localhost/",
|
|
95
|
+
"coverageThreshold": {
|
|
96
|
+
"global": {
|
|
97
|
+
"branches": 0,
|
|
98
|
+
"functions": 0,
|
|
99
|
+
"lines": 0,
|
|
100
|
+
"statements": 0
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"coveragePathIgnorePatterns": [
|
|
104
|
+
"/node_modules/",
|
|
105
|
+
"dist",
|
|
106
|
+
"lib",
|
|
107
|
+
"lib-esm"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"gitHead": "ec82d5c8de2a151da890c14be764d77ad917bd7f"
|
|
114
111
|
}
|