@pluv/platform-pluv 2.3.0 → 3.0.0
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 +17 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +6 -6
- package/src/PluvPlatform.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-pluv@
|
|
2
|
+
> @pluv/platform-pluv@3.0.0 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[32m15.03 KB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 80ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m16.87 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 80ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6503ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.79 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.79 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @pluv/platform-pluv
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @pluv/crdt@3.0.0
|
|
8
|
+
- @pluv/io@3.0.0
|
|
9
|
+
- @pluv/types@3.0.0
|
|
10
|
+
|
|
11
|
+
## 2.3.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 824c98b: Added more webhook logging.
|
|
16
|
+
- @pluv/crdt@2.3.1
|
|
17
|
+
- @pluv/io@2.3.1
|
|
18
|
+
- @pluv/types@2.3.1
|
|
19
|
+
|
|
3
20
|
## 2.3.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -394,6 +394,7 @@ var PluvPlatform = class extends import_io.AbstractPlatform {
|
|
|
394
394
|
} catch (error) {
|
|
395
395
|
const message = error instanceof Error ? error.message : "Unexpected error";
|
|
396
396
|
const status = error instanceof HttpError ? error.status : 500;
|
|
397
|
+
this._logDebug("Uncaught error: ", message);
|
|
397
398
|
return createErrorResponse(c, { message }, status);
|
|
398
399
|
}
|
|
399
400
|
}));
|
package/dist/index.mjs
CHANGED
|
@@ -364,6 +364,7 @@ var PluvPlatform = class extends AbstractPlatform {
|
|
|
364
364
|
} catch (error) {
|
|
365
365
|
const message = error instanceof Error ? error.message : "Unexpected error";
|
|
366
366
|
const status = error instanceof HttpError ? error.status : 500;
|
|
367
|
+
this._logDebug("Uncaught error: ", message);
|
|
367
368
|
return createErrorResponse(c, { message }, status);
|
|
368
369
|
}
|
|
369
370
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-pluv",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
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.10",
|
|
23
23
|
"zod": "^3.25.17",
|
|
24
|
-
"@pluv/
|
|
25
|
-
"@pluv/
|
|
26
|
-
"@pluv/
|
|
24
|
+
"@pluv/crdt": "^3.0.0",
|
|
25
|
+
"@pluv/io": "^3.0.0",
|
|
26
|
+
"@pluv/types": "^3.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"eslint": "^9.27.0",
|
|
30
30
|
"tsup": "^8.5.0",
|
|
31
31
|
"typescript": "^5.8.3",
|
|
32
|
-
"@pluv/tsconfig": "^
|
|
33
|
-
"eslint-config-pluv": "^
|
|
32
|
+
"@pluv/tsconfig": "^3.0.0",
|
|
33
|
+
"eslint-config-pluv": "^3.0.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
package/src/PluvPlatform.ts
CHANGED
|
@@ -370,6 +370,8 @@ export class PluvPlatform<
|
|
|
370
370
|
const message = error instanceof Error ? error.message : "Unexpected error";
|
|
371
371
|
const status = error instanceof HttpError ? error.status : 500;
|
|
372
372
|
|
|
373
|
+
this._logDebug("Uncaught error: ", message);
|
|
374
|
+
|
|
373
375
|
return createErrorResponse(c, { message }, status);
|
|
374
376
|
}
|
|
375
377
|
});
|