@pluv/platform-pluv 0.35.1 → 0.35.3
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 +7 -7
- package/CHANGELOG.md +18 -0
- package/dist/index.js +0 -3
- package/dist/index.mjs +0 -3
- package/package.json +9 -9
- package/src/PluvPlatform.ts +0 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-pluv@0.35.
|
|
2
|
+
> @pluv/platform-pluv@0.35.3 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
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.3.
|
|
7
|
+
[34mCLI[39m tsup v8.3.6
|
|
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[32m9.65 KB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 84ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m10.54 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 83ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6479ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m2.86 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m2.86 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @pluv/platform-pluv
|
|
2
2
|
|
|
3
|
+
## 0.35.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @pluv/crdt@0.35.3
|
|
8
|
+
- @pluv/io@0.35.3
|
|
9
|
+
- @pluv/types@0.35.3
|
|
10
|
+
|
|
11
|
+
## 0.35.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 47ab053: Remove unused check for `authorize.required` for `@pluv/platform-pluv`.
|
|
16
|
+
- Updated dependencies [81cb692]
|
|
17
|
+
- @pluv/types@0.35.2
|
|
18
|
+
- @pluv/io@0.35.2
|
|
19
|
+
- @pluv/crdt@0.35.2
|
|
20
|
+
|
|
3
21
|
## 0.35.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -287,9 +287,6 @@ var PluvPlatform = class extends import_io.AbstractPlatform {
|
|
|
287
287
|
if (!config.authorize) throw new Error("Config `authorize` must be provided to `platformPluv`");
|
|
288
288
|
if (!!config.onRoomMessage) throw new Error("Config `onRoomMessage` is not supported on `platformPluv`");
|
|
289
289
|
if (!!config.onStorageUpdated) throw new Error("Config `onStorageUpdated` is not supported on `platformPluv`");
|
|
290
|
-
if (!!config.authorize.required) {
|
|
291
|
-
throw new Error("Config `authorize.required` is not allowed to be false on `platformPluv`");
|
|
292
|
-
}
|
|
293
290
|
this._authorize = config.authorize;
|
|
294
291
|
this._getInitialStorage = config.getInitialStorage;
|
|
295
292
|
this._listeners = {
|
package/dist/index.mjs
CHANGED
|
@@ -269,9 +269,6 @@ var PluvPlatform = class extends AbstractPlatform {
|
|
|
269
269
|
if (!config.authorize) throw new Error("Config `authorize` must be provided to `platformPluv`");
|
|
270
270
|
if (!!config.onRoomMessage) throw new Error("Config `onRoomMessage` is not supported on `platformPluv`");
|
|
271
271
|
if (!!config.onStorageUpdated) throw new Error("Config `onStorageUpdated` is not supported on `platformPluv`");
|
|
272
|
-
if (!!config.authorize.required) {
|
|
273
|
-
throw new Error("Config `authorize.required` is not allowed to be false on `platformPluv`");
|
|
274
|
-
}
|
|
275
272
|
this._authorize = config.authorize;
|
|
276
273
|
this._getInitialStorage = config.getInitialStorage;
|
|
277
274
|
this._listeners = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-pluv",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.3",
|
|
4
4
|
"description": "@pluv/io adapter for pluv.io",
|
|
5
5
|
"author": "leedavidcs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@types/node": "^22.
|
|
21
|
-
"hono": "^4.6.
|
|
20
|
+
"@types/node": "^22.12.0",
|
|
21
|
+
"hono": "^4.6.19",
|
|
22
22
|
"zod": "^3.24.1",
|
|
23
|
-
"@pluv/crdt": "^0.35.
|
|
24
|
-
"@pluv/io": "^0.35.
|
|
25
|
-
"@pluv/types": "^0.35.
|
|
23
|
+
"@pluv/crdt": "^0.35.3",
|
|
24
|
+
"@pluv/io": "^0.35.3",
|
|
25
|
+
"@pluv/types": "^0.35.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"eslint": "^8.57.1",
|
|
29
|
-
"tsup": "^8.3.
|
|
29
|
+
"tsup": "^8.3.6",
|
|
30
30
|
"typescript": "^5.7.3",
|
|
31
|
-
"@pluv/tsconfig": "^0.35.
|
|
32
|
-
"eslint-config-pluv": "^0.35.
|
|
31
|
+
"@pluv/tsconfig": "^0.35.3",
|
|
32
|
+
"eslint-config-pluv": "^0.35.3"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
package/src/PluvPlatform.ts
CHANGED
|
@@ -163,9 +163,6 @@ export class PluvPlatform extends AbstractPlatform<
|
|
|
163
163
|
if (!config.authorize) throw new Error("Config `authorize` must be provided to `platformPluv`");
|
|
164
164
|
if (!!config.onRoomMessage) throw new Error("Config `onRoomMessage` is not supported on `platformPluv`");
|
|
165
165
|
if (!!config.onStorageUpdated) throw new Error("Config `onStorageUpdated` is not supported on `platformPluv`");
|
|
166
|
-
if (!!config.authorize.required) {
|
|
167
|
-
throw new Error("Config `authorize.required` is not allowed to be false on `platformPluv`");
|
|
168
|
-
}
|
|
169
166
|
|
|
170
167
|
/**
|
|
171
168
|
* !HACK
|