@pluv/platform-pluv 0.35.2 → 0.35.4
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/package.json +10 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
> @pluv/platform-pluv@0.35.
|
|
2
|
+
> @pluv/platform-pluv@0.35.4 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
|
-
[32mCJS[39m [1mdist/index.js [22m[32m10.54 KB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 118ms
|
|
13
11
|
[32mESM[39m [1mdist/index.mjs [22m[32m9.65 KB[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 119ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m10.54 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 122ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6251ms
|
|
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,22 @@
|
|
|
1
1
|
# @pluv/platform-pluv
|
|
2
2
|
|
|
3
|
+
## 0.35.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [5d3a56f]
|
|
8
|
+
- @pluv/io@0.35.4
|
|
9
|
+
- @pluv/crdt@0.35.4
|
|
10
|
+
- @pluv/types@0.35.4
|
|
11
|
+
|
|
12
|
+
## 0.35.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- @pluv/crdt@0.35.3
|
|
17
|
+
- @pluv/io@0.35.3
|
|
18
|
+
- @pluv/types@0.35.3
|
|
19
|
+
|
|
3
20
|
## 0.35.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluv/platform-pluv",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.4",
|
|
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.
|
|
22
|
-
"zod": "^3.24.
|
|
23
|
-
"@pluv/crdt": "^0.35.
|
|
24
|
-
"@pluv/io": "^0.35.
|
|
25
|
-
"@pluv/types": "^0.35.
|
|
20
|
+
"@types/node": "^22.13.4",
|
|
21
|
+
"hono": "^4.7.1",
|
|
22
|
+
"zod": "^3.24.2",
|
|
23
|
+
"@pluv/crdt": "^0.35.4",
|
|
24
|
+
"@pluv/io": "^0.35.4",
|
|
25
|
+
"@pluv/types": "^0.35.4"
|
|
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.4",
|
|
32
|
+
"eslint-config-pluv": "^0.35.4"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|