@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.
@@ -1,18 +1,18 @@
1
1
 
2
- > @pluv/platform-pluv@0.35.1 build /home/runner/work/pluv/pluv/packages/platform-pluv
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
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.3.5
7
+ CLI tsup v8.3.6
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist/index.js 10.68 KB
12
- CJS ⚡️ Build success in 80ms
13
- ESM dist/index.mjs 9.79 KB
14
- ESM ⚡️ Build success in 80ms
11
+ ESM dist/index.mjs 9.65 KB
12
+ ESM ⚡️ Build success in 84ms
13
+ CJS dist/index.js 10.54 KB
14
+ CJS ⚡️ Build success in 83ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 6402ms
16
+ DTS ⚡️ Build success in 6479ms
17
17
  DTS dist/index.d.mts 2.86 KB
18
18
  DTS dist/index.d.ts 2.86 KB
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.1",
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.10.7",
21
- "hono": "^4.6.17",
20
+ "@types/node": "^22.12.0",
21
+ "hono": "^4.6.19",
22
22
  "zod": "^3.24.1",
23
- "@pluv/crdt": "^0.35.1",
24
- "@pluv/io": "^0.35.1",
25
- "@pluv/types": "^0.35.1"
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.5",
29
+ "tsup": "^8.3.6",
30
30
  "typescript": "^5.7.3",
31
- "@pluv/tsconfig": "^0.35.1",
32
- "eslint-config-pluv": "^0.35.1"
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",
@@ -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