@pluv/platform-pluv 0.38.5 → 0.38.6
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +9 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +6 -6
- package/src/PluvPlatform.ts +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-pluv@0.38.
|
|
2
|
+
> @pluv/platform-pluv@0.38.6 build /home/runner/work/pluv/pluv/packages/platform-pluv
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mCLI[39m Target: es6
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m10.37 KB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 117ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m11.91 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 118ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6264ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.43 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.43 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -308,9 +308,9 @@ var PluvPlatform = class extends import_io.AbstractPlatform {
|
|
|
308
308
|
this._authorize = config.authorize;
|
|
309
309
|
this._getInitialStorage = config.getInitialStorage;
|
|
310
310
|
this._listeners = {
|
|
311
|
-
onRoomDeleted: config.onRoomDeleted,
|
|
312
|
-
onUserConnected: config.onUserConnected,
|
|
313
|
-
onUserDisconnected: config.onUserDisconnected
|
|
311
|
+
onRoomDeleted: (event) => config.onRoomDeleted(event),
|
|
312
|
+
onUserConnected: (event) => config.onUserConnected(event),
|
|
313
|
+
onUserDisconnected: (event) => config.onUserDisconnected(event)
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
316
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -280,9 +280,9 @@ var PluvPlatform = class extends AbstractPlatform {
|
|
|
280
280
|
this._authorize = config.authorize;
|
|
281
281
|
this._getInitialStorage = config.getInitialStorage;
|
|
282
282
|
this._listeners = {
|
|
283
|
-
onRoomDeleted: config.onRoomDeleted,
|
|
284
|
-
onUserConnected: config.onUserConnected,
|
|
285
|
-
onUserDisconnected: config.onUserDisconnected
|
|
283
|
+
onRoomDeleted: (event) => config.onRoomDeleted(event),
|
|
284
|
+
onUserConnected: (event) => config.onUserConnected(event),
|
|
285
|
+
onUserDisconnected: (event) => config.onUserDisconnected(event)
|
|
286
286
|
};
|
|
287
287
|
}
|
|
288
288
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-pluv",
|
|
3
|
-
"version": "0.38.
|
|
3
|
+
"version": "0.38.6",
|
|
4
4
|
"description": "@pluv/io adapter for pluv.io",
|
|
5
5
|
"author": "leedavidcs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"fast-json-stable-stringify": "^2.1.0",
|
|
22
22
|
"hono": "^4.7.4",
|
|
23
23
|
"zod": "^3.24.2",
|
|
24
|
-
"@pluv/crdt": "^0.38.
|
|
25
|
-
"@pluv/
|
|
26
|
-
"@pluv/
|
|
24
|
+
"@pluv/crdt": "^0.38.6",
|
|
25
|
+
"@pluv/io": "^0.38.6",
|
|
26
|
+
"@pluv/types": "^0.38.6"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"eslint": "^8.57.1",
|
|
30
30
|
"tsup": "^8.4.0",
|
|
31
31
|
"typescript": "^5.8.2",
|
|
32
|
-
"@pluv/tsconfig": "^0.38.
|
|
33
|
-
"eslint-config-pluv": "^0.38.
|
|
32
|
+
"@pluv/tsconfig": "^0.38.6",
|
|
33
|
+
"eslint-config-pluv": "^0.38.6"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
package/src/PluvPlatform.ts
CHANGED
|
@@ -185,9 +185,9 @@ export class PluvPlatform<
|
|
|
185
185
|
this._authorize = config.authorize;
|
|
186
186
|
this._getInitialStorage = config.getInitialStorage;
|
|
187
187
|
this._listeners = {
|
|
188
|
-
onRoomDeleted: config.onRoomDeleted,
|
|
189
|
-
onUserConnected: config.onUserConnected,
|
|
190
|
-
onUserDisconnected: config.onUserDisconnected,
|
|
188
|
+
onRoomDeleted: (event) => config.onRoomDeleted(event),
|
|
189
|
+
onUserConnected: (event) => config.onUserConnected(event),
|
|
190
|
+
onUserDisconnected: (event) => config.onUserDisconnected(event),
|
|
191
191
|
};
|
|
192
192
|
}
|
|
193
193
|
|