@rpgjs/server 4.1.0 → 4.1.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.1.2](https://github.com/RSamaium/RPG-JS/compare/v4.1.1...v4.1.2) (2023-10-30)
7
+
8
+ **Note:** Version bump only for package @rpgjs/server
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.1.1](https://github.com/RSamaium/RPG-JS/compare/v4.1.0...v4.1.1) (2023-10-27)
15
+
16
+ **Note:** Version bump only for package @rpgjs/server
17
+
18
+
19
+
20
+
21
+
6
22
  # [4.1.0](https://github.com/RSamaium/RPG-JS/compare/v4.0.5...v4.1.0) (2023-10-20)
7
23
 
8
24
  **Note:** Version bump only for package @rpgjs/server
@@ -208,6 +208,9 @@ export interface RpgServer {
208
208
  * server.module.emit('server.player.onAuth', player)
209
209
  * ```
210
210
  *
211
+ * > When we issue a hook, it has to be in form:
212
+ * > `<side>.<property>.<function>`
213
+ *
211
214
  * And listen to the hook:
212
215
  *
213
216
  * ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpgjs/server",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -27,8 +27,8 @@
27
27
  "author": "Samuel Ronce",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
- "@rpgjs/common": "^4.1.0",
31
- "@rpgjs/database": "^4.0.5",
30
+ "@rpgjs/common": "^4.1.1",
31
+ "@rpgjs/database": "^4.1.1",
32
32
  "@rpgjs/tiled": "^4.0.5",
33
33
  "@rpgjs/types": "^4.0.5",
34
34
  "axios": "^1.3.6",
@@ -42,9 +42,9 @@
42
42
  "simple-room": "^2.4.1",
43
43
  "socket.io": "^4.6.1"
44
44
  },
45
- "gitHead": "1dadb65e9da31135e1a6f189f7702ef2d82ba3d9",
45
+ "gitHead": "9e5c8ba4fcc73e0e156df69f930012c58349c3f5",
46
46
  "devDependencies": {
47
- "@rpgjs/compiler": "^4.0.5",
47
+ "@rpgjs/compiler": "^4.1.1",
48
48
  "typescript": "^5.0.4"
49
49
  },
50
50
  "alias": {
package/src/RpgServer.ts CHANGED
@@ -220,6 +220,9 @@ export interface RpgServer {
220
220
  * server.module.emit('server.player.onAuth', player)
221
221
  * ```
222
222
  *
223
+ * > When we issue a hook, it has to be in form:
224
+ * > `<side>.<property>.<function>`
225
+ *
223
226
  * And listen to the hook:
224
227
  *
225
228
  * ```ts