@pluv/crdt-loro 0.20.0 → 0.21.1

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/crdt-loro@0.20.0 build /home/runner/work/pluv/pluv/packages/crdt-loro
2
+ > @pluv/crdt-loro@0.21.1 build /home/runner/work/pluv/pluv/packages/crdt-loro
3
3
  > tsup src/index.ts --format esm,cjs --dts
4
4
 
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.1.0
8
- CLI Target: es6
9
- ESM Build start
10
- CJS Build start
11
- CJS dist/index.js 9.39 KB
12
- CJS ⚡️ Build success in 80ms
13
- ESM dist/index.mjs 8.33 KB
14
- ESM ⚡️ Build success in 80ms
15
- DTS Build start
16
- DTS ⚡️ Build success in 1828ms
17
- DTS dist/index.d.mts 3.41 KB
18
- DTS dist/index.d.ts 3.41 KB
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.2.4
8
+ CLI Target: es6
9
+ ESM Build start
10
+ CJS Build start
11
+ ESM dist/index.mjs 8.33 KB
12
+ ESM ⚡️ Build success in 94ms
13
+ CJS dist/index.js 9.39 KB
14
+ CJS ⚡️ Build success in 94ms
15
+ DTS Build start
16
+ DTS ⚡️ Build success in 1989ms
17
+ DTS dist/index.d.mts 3.43 KB
18
+ DTS dist/index.d.ts 3.43 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @pluv/crdt-loro
2
2
 
3
+ ## 0.21.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @pluv/crdt@0.21.1
8
+ - @pluv/types@0.21.1
9
+
10
+ ## 0.21.0
11
+
12
+ ### Patch Changes
13
+
14
+ - @pluv/crdt@0.21.0
15
+ - @pluv/types@0.21.0
16
+
3
17
  ## 0.20.0
4
18
 
5
19
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -61,7 +61,7 @@ declare class CrdtLoroDocFactory<TStorage extends Record<string, LoroType<any, a
61
61
  getInitialized(initialStorage?: () => TStorage): CrdtLoroDoc<TStorage>;
62
62
  }
63
63
 
64
- declare const doc: <TStorage extends Record<string, any>>(value?: () => TStorage) => CrdtLoroDocFactory<TStorage>;
64
+ declare const doc: <TStorage extends Record<string, LoroType<any, any>>>(value?: () => TStorage) => CrdtLoroDocFactory<TStorage>;
65
65
 
66
66
  declare const list: <T extends unknown>(value?: T[] | readonly T[]) => LoroType<LoroList<T>, T[]>;
67
67
 
package/dist/index.d.ts CHANGED
@@ -61,7 +61,7 @@ declare class CrdtLoroDocFactory<TStorage extends Record<string, LoroType<any, a
61
61
  getInitialized(initialStorage?: () => TStorage): CrdtLoroDoc<TStorage>;
62
62
  }
63
63
 
64
- declare const doc: <TStorage extends Record<string, any>>(value?: () => TStorage) => CrdtLoroDocFactory<TStorage>;
64
+ declare const doc: <TStorage extends Record<string, LoroType<any, any>>>(value?: () => TStorage) => CrdtLoroDocFactory<TStorage>;
65
65
 
66
66
  declare const list: <T extends unknown>(value?: T[] | readonly T[]) => LoroType<LoroList<T>, T[]>;
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluv/crdt-loro",
3
- "version": "0.20.0",
3
+ "version": "0.21.1",
4
4
  "description": "loro for @pluv/io",
5
5
  "author": "leedavidcs",
6
6
  "license": "MIT",
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "js-base64": "^3.7.7",
21
- "@pluv/crdt": "^0.20.0",
22
- "@pluv/types": "^0.20.0"
21
+ "@pluv/crdt": "^0.21.1",
22
+ "@pluv/types": "^0.21.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "loro-crdt": "^0.16.0"
@@ -27,10 +27,10 @@
27
27
  "devDependencies": {
28
28
  "eslint": "^8.57.0",
29
29
  "loro-crdt": "^0.16.6",
30
- "tsup": "^8.1.0",
31
- "typescript": "^5.4.5",
32
- "@pluv/tsconfig": "^0.20.0",
33
- "eslint-config-pluv": "^0.20.0"
30
+ "tsup": "^8.2.4",
31
+ "typescript": "^5.5.4",
32
+ "@pluv/tsconfig": "^0.21.1",
33
+ "eslint-config-pluv": "^0.21.1"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "tsup src/index.ts --format esm,cjs --dts",