@epicgames-ps/lib-pixelstreamingfrontend-ue5.5 1.1.0 → 1.2.1

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @epicgames-ps/lib-pixelstreamingfrontend-ue5.5
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2d0e139: Changed module type from cjs to node16 for the CommonJS version of the package. This fixes issues with some dependencies and also brings things to be slightly more modern.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [2d0e139]
12
+ - @epicgames-ps/lib-pixelstreamingcommon-ue5.5@0.3.0
13
+
3
14
  ## 1.1.0
4
15
 
5
16
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "Frontend library for Unreal Engine 5.5 Pixel Streaming",
5
5
  "main": "dist/cjs/pixelstreamingfrontend.js",
6
6
  "module": "dist/esm/pixelstreamingfrontend.js",
@@ -32,7 +32,7 @@
32
32
  "typescript-eslint": "^8.24.0"
33
33
  },
34
34
  "dependencies": {
35
- "@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.2.9",
35
+ "@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.3.1",
36
36
  "sdp": "^3.2.0"
37
37
  },
38
38
  "repository": {
package/tsconfig.cjs.json CHANGED
@@ -2,6 +2,7 @@
2
2
  "extends": "./tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "outDir": "./dist/cjs",
5
- "module": "commonjs"
5
+ "module": "node16",
6
+ "moduleResolution": "node16"
6
7
  }
7
8
  }
package/tsconfig.json CHANGED
@@ -12,7 +12,8 @@
12
12
  "noImplicitReturns": true,
13
13
  "noPropertyAccessFromIndexSignature": true,
14
14
  "declaration": true,
15
- "declarationDir": "./dist/types"
15
+ "declarationDir": "./dist/types",
16
+ "moduleResolution": "bundler" // helps IDEs
16
17
  },
17
18
  "lib": ["ES6"],
18
19
  "include": ["./src/**/*.ts"],