@pexip/peer-connection-stats 17.10.2 → 17.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +11 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 17.11.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d98fe9d: Move to module type.
8
+ - acd7aba: Moves `jest` to individual packages, enabling them to have their own
9
+ individual config.
10
+ - Updated dependencies [d98fe9d]
11
+ - @pexip/signal@16.7.1
12
+ - @pexip/utils@16.12.1
13
+
3
14
  ## 17.10.2
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip/peer-connection-stats",
3
- "version": "17.10.2",
3
+ "version": "17.11.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",
@@ -9,6 +9,7 @@
9
9
  "url": "https://gitlab.com/pexip/zoo.git",
10
10
  "directory": "src/aquila/packages/peer-connection-stats"
11
11
  },
12
+ "type": "module",
12
13
  "license": "Apache-2.0",
13
14
  "module": "dist/index.js",
14
15
  "types": "dist/index.d.ts",
@@ -20,7 +21,7 @@
20
21
  "clean": "rm -fr dist",
21
22
  "dev": "pexip-bundler dev",
22
23
  "prepack": "yarn clean && yarn build --no-sourcemap",
23
- "test": "pexip-bundler test",
24
+ "test": "jest",
24
25
  "tsc": "tsc --noEmit",
25
26
  "check-format": "prettier --ignore-path=../../.prettierignore --check .",
26
27
  "format": "prettier --ignore-path=../../.prettierignore --write .",
@@ -28,11 +29,16 @@
28
29
  "typecheck": "yarn tsc --noEmit -p ."
29
30
  },
30
31
  "dependencies": {
31
- "@pexip/signal": "16.7.0",
32
- "@pexip/utils": "16.12.0"
32
+ "@pexip/signal": "16.7.1",
33
+ "@pexip/utils": "16.12.1"
33
34
  },
34
35
  "devDependencies": {
35
- "@pexip/bundler": "16.7.0",
36
+ "@pexip/bundler": "17.0.0",
37
+ "@swc/core": "^1.4.6",
38
+ "@swc/jest": "^0.2.36",
39
+ "jest": "^29.5.12",
40
+ "jest-junit": "^16.0.0",
41
+ "prettier": "^3.2.5",
36
42
  "typescript": "~5.3.0"
37
43
  },
38
44
  "publishConfig": {