@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 +11 -0
- package/package.json +2 -2
- package/tsconfig.cjs.json +2 -1
- package/tsconfig.json +2 -1
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
|
|
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.
|
|
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
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"],
|