spoint 0.1.19 → 0.1.20

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/client/app.js +3 -1
  2. package/package.json +1 -1
package/client/app.js CHANGED
@@ -813,7 +813,9 @@ function removePlayerMesh(id) {
813
813
 
814
814
  function evaluateAppModule(code) {
815
815
  try {
816
- const stripped = code.replace(/^import\s+.*$/gm, '')
816
+ // Strip imports and import.meta usage
817
+ let stripped = code.replace(/^import\s+.*$/gm, '')
818
+ stripped = stripped.replace(/const\s+__dirname\s*=.*import\.meta\.url.*$/gm, 'const __dirname = "/"')
817
819
  const wrapped = stripped.replace(/export\s+default\s*/, 'return ').replace(/export\s+/g, '')
818
820
  return new Function(wrapped)()
819
821
  } catch (e) { console.error('[app-eval]', e.message, e.stack); return null }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoint",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Physics and netcode SDK for multiplayer game servers",
5
5
  "type": "module",
6
6
  "main": "src/index.js",