loro-crdt 1.0.8-alpha.3 → 1.0.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 62a3a93: Merge two js packages
8
+
3
9
  ## 1.0.8-alpha.3
4
10
 
5
11
  ### Patch Changes
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loro-crdt",
3
- "version": "1.0.8-alpha.3",
3
+ "version": "1.0.8",
4
4
  "description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.",
5
5
  "keywords": [
6
6
  "crdt",
@@ -26,11 +26,6 @@
26
26
  "LICENSE",
27
27
  "package.json"
28
28
  ],
29
- "scripts": {
30
- "build-dev": "deno run -A ./scripts/build.ts dev && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
31
- "build-release": "deno run -A ./scripts/build.ts release && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
32
- "test": "node --expose-gc ./node_modules/vitest/vitest.mjs run && npx tsc --noEmit && cd ./deno_tests && deno test -A"
33
- },
34
29
  "homepage": "https://loro.dev",
35
30
  "author": "",
36
31
  "license": "MIT",
@@ -54,5 +49,10 @@
54
49
  "rollup-plugin-esbuild": "^5.0.0",
55
50
  "vite": "^4.2.1",
56
51
  "vitest": "^1.4.0"
52
+ },
53
+ "scripts": {
54
+ "build-dev": "deno run -A ./scripts/build.ts dev && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
55
+ "build-release": "deno run -A ./scripts/build.ts release && rollup -c && deno run -A ./scripts/post-rollup.ts && npm run test",
56
+ "test": "node --expose-gc ./node_modules/vitest/vitest.mjs run && npx tsc --noEmit && cd ./deno_tests && deno test -A"
57
57
  }
58
- }
58
+ }
Binary file