@pexip/peer-connection-stats 17.2.1 → 17.4.0
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 +14 -0
- package/package.json +5 -6
- package/src/index.ts +0 -3
- package/src/statsCollector.ts +0 -665
- package/src/statsCollector.types.ts +0 -233
- package/src/tests/__snapshots__/statsCollector.test.ts.snap +0 -208
- package/src/tests/statsCollector.chrome-inbound-presentation.fixtures.ts +0 -990
- package/src/tests/statsCollector.chrome-multiple.fixtures.ts +0 -2692
- package/src/tests/statsCollector.chrome-outbound-presentation.fixtures.ts +0 -925
- package/src/tests/statsCollector.firefox.fixtures.ts +0 -473
- package/src/tests/statsCollector.test.ts +0 -480
- package/src/utils.ts +0 -41
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip/peer-connection-stats",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.4.0",
|
|
4
4
|
"description": "Normalizer of RTCStats and related",
|
|
5
5
|
"homepage": "https://gitlab.com/pexip/zoo",
|
|
6
6
|
"bugs": "https://gitlab.com/pexip/zoo/issues",
|
|
@@ -13,14 +13,13 @@
|
|
|
13
13
|
"module": "dist/index.mjs",
|
|
14
14
|
"types": "dist/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
|
-
"src",
|
|
17
16
|
"dist"
|
|
18
17
|
],
|
|
19
18
|
"scripts": {
|
|
20
19
|
"build": "pexip-bundler build",
|
|
21
20
|
"clean": "rm -fr dist",
|
|
22
21
|
"dev": "pexip-bundler dev",
|
|
23
|
-
"prepack": "yarn build",
|
|
22
|
+
"prepack": "yarn clean && yarn build --no-sourcemap",
|
|
24
23
|
"test": "pexip-bundler test",
|
|
25
24
|
"tsc": "tsc --noEmit",
|
|
26
25
|
"check-format": "prettier --ignore-path=../../.prettierignore --check .",
|
|
@@ -30,14 +29,14 @@
|
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
31
|
"@pexip/signal": "16.5.0",
|
|
33
|
-
"@pexip/utils": "16.
|
|
32
|
+
"@pexip/utils": "16.7.0"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
|
-
"@pexip/bundler": "16.
|
|
35
|
+
"@pexip/bundler": "16.4.0",
|
|
37
36
|
"typescript": "~5.0.0"
|
|
38
37
|
},
|
|
39
38
|
"publishConfig": {
|
|
40
39
|
"access": "public",
|
|
41
|
-
"registry": "https://registry.npmjs.org"
|
|
40
|
+
"registry": "https://registry.npmjs.org/"
|
|
42
41
|
}
|
|
43
42
|
}
|
package/src/index.ts
DELETED