hytopia 0.4.1-dev.7 → 0.4.2

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/bin/scripts.js +1 -1
  2. package/package.json +5 -2
package/bin/scripts.js CHANGED
@@ -105,7 +105,7 @@ function installProjectDependencies() {
105
105
  execSync('bun init --yes');
106
106
  execSync('bun add hytopia@latest --force');
107
107
  execSync('bun add @hytopia.com/assets --force');
108
- // execSync('bun pm trust mediasoup'); uncomment this when webrtc support ships.
108
+ execSync('bun pm trust mediasoup');
109
109
  }
110
110
 
111
111
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hytopia",
3
- "version": "0.4.1-dev.7",
3
+ "version": "0.4.2",
4
4
  "description": "The HYTOPIA SDK makes it easy for developers to create massively multiplayer games using JavaScript or TypeScript.",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -51,5 +51,8 @@
51
51
  "archiver": "^7.0.1",
52
52
  "mediasoup": "3.15.7",
53
53
  "@gltf-transform/cli": "4.1.1"
54
- }
54
+ },
55
+ "trustedDependencies": [
56
+ "mediasoup"
57
+ ]
55
58
  }