@rpgjs/server 5.0.0-alpha.3 → 5.0.0-alpha.5

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/package.json CHANGED
@@ -1,21 +1,17 @@
1
1
  {
2
2
  "name": "@rpgjs/server",
3
- "version": "5.0.0-alpha.3",
3
+ "version": "5.0.0-alpha.5",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
- "scripts": {
10
- "dev": "vite build --watch",
11
- "build": "vite build"
12
- },
13
9
  "keywords": [],
14
10
  "author": "",
15
11
  "license": "MIT",
16
12
  "description": "",
17
13
  "dependencies": {
18
- "@rpgjs/common": "workspace:*",
14
+ "@rpgjs/common": "5.0.0-alpha.5",
19
15
  "@rpgjs/database": "^4.3.0",
20
16
  "@signe/di": "^2.3.2",
21
17
  "@signe/reactive": "^2.3.2",
@@ -27,5 +23,9 @@
27
23
  "vite": "^6.2.5",
28
24
  "vite-plugin-dts": "^4.5.3"
29
25
  },
30
- "type": "module"
31
- }
26
+ "type": "module",
27
+ "scripts": {
28
+ "dev": "vite build --watch",
29
+ "build": "vite build"
30
+ }
31
+ }
package/src/rooms/map.ts CHANGED
@@ -220,6 +220,7 @@ export class RpgMap extends RpgCommonMap<RpgPlayer> implements RoomOnJoin {
220
220
  })
221
221
 
222
222
  const { x, y, event } = eventObj;
223
+
223
224
  let id = eventObj.id || generateShortUUID()
224
225
  let eventInstance: RpgPlayer;
225
226
 
package/CHANGELOG.md DELETED
@@ -1,9 +0,0 @@
1
- # @rpgjs/server
2
-
3
- ## 5.0.0-alpha.3
4
-
5
- ### Patch Changes
6
-
7
- - alpha
8
- - Updated dependencies
9
- - @rpgjs/common@5.0.0-alpha.3