hytopia 0.10.36-rapier-regression → 0.10.38-notifications-prerelease
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/bin/scripts.js +1 -1
- package/package.json +1 -2
- package/server.d.ts +0 -1
- package/server.mjs +160 -160
package/bin/scripts.js
CHANGED
|
@@ -473,7 +473,7 @@ async function packageProject() {
|
|
|
473
473
|
// set priority level for takahiro tickets
|
|
474
474
|
|
|
475
475
|
async function build(devMode = false) {
|
|
476
|
-
let envFlags = devMode ? '
|
|
476
|
+
let envFlags = devMode ? '' : '--minify --sourcemap=inline';
|
|
477
477
|
|
|
478
478
|
execSync(`npx --yes bun build --target=node --env=disable --format=esm ${envFlags} --outfile=index.mjs index.ts`, { stdio: 'inherit' });
|
|
479
479
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hytopia",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.38-notifications-prerelease",
|
|
4
4
|
"description": "The HYTOPIA SDK makes it easy for developers to create massively multiplayer games using JavaScript or TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./server.mjs",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"@gltf-transform/cli": "4.2.1",
|
|
60
60
|
"archiver": "7.0.1",
|
|
61
61
|
"bun": "1.3.0",
|
|
62
|
-
"mediasoup": "3.15.7",
|
|
63
62
|
"nodemon": "3.1.10",
|
|
64
63
|
"ws": "8.18.2"
|
|
65
64
|
},
|
package/server.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import RAPIER from '@dimforge/rapier3d-simd-compat';
|
|
|
10
10
|
import { SdpMatrix3 } from '@dimforge/rapier3d-simd-compat';
|
|
11
11
|
import * as Sentry from '@sentry/node';
|
|
12
12
|
import type { Socket } from 'net';
|
|
13
|
-
import type { types } from 'mediasoup';
|
|
14
13
|
import { WebSocket as WebSocket_2 } from 'ws';
|
|
15
14
|
|
|
16
15
|
/**
|