@visulima/deep-clone 4.0.0-alpha.12 → 4.0.0-alpha.14

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +21 -21
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## @visulima/deep-clone [4.0.0-alpha.14](https://github.com/visulima/visulima/compare/@visulima/deep-clone@4.0.0-alpha.13...@visulima/deep-clone@4.0.0-alpha.14) (2026-05-27)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **storage-client:** percent-encode user fields in defaultFingerprint ([7c78a0f](https://github.com/visulima/visulima/commit/7c78a0f9512e2a673b941d80839e9f1e86b7b5d0))
6
+
7
+ ### Documentation
8
+
9
+ * prettier-format agent instructions ([71b6414](https://github.com/visulima/visulima/commit/71b6414528780ac82c4e0bb25b5f4f11faba5549))
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * **ci-stability:** green CI across vis, native, lint, tests, attw ([#651](https://github.com/visulima/visulima/issues/651)) ([d4eb684](https://github.com/visulima/visulima/commit/d4eb684b5f75c818c9251048c605a0ed54a268e3))
14
+ * **lint:** clear eslint findings in bench + animation test ([16bba0b](https://github.com/visulima/visulima/commit/16bba0b6a35885904b719a3f4a560da436a997c4))
15
+ * **repo:** sort package.json keys across all packages ([e1fd9ab](https://github.com/visulima/visulima/commit/e1fd9ab467ef96a98c777da1572ff6a50fcf7e71))
16
+
17
+ ### Tests
18
+
19
+ * **repo:** add dist runtime + types integration tests ([32ee300](https://github.com/visulima/visulima/commit/32ee300b7184117a0ddf9f9d390f75f8932d5ed9))
20
+
21
+ ## @visulima/deep-clone [4.0.0-alpha.13](https://github.com/visulima/visulima/compare/@visulima/deep-clone@4.0.0-alpha.12...@visulima/deep-clone@4.0.0-alpha.13) (2026-05-14)
22
+
23
+ ### Bug Fixes
24
+
25
+ * **bench:** import deep-clone fixture + tui modules via public paths ([362417e](https://github.com/visulima/visulima/commit/362417e58ee07b8efa8fa1057572ea729a035058))
26
+
27
+ ### Miscellaneous Chores
28
+
29
+ * **deep-clone:** apply formatter sweep to benchmark ([95e5e5d](https://github.com/visulima/visulima/commit/95e5e5d99b52c6c0accb3531b35998ceea5c3097))
30
+
1
31
  ## @visulima/deep-clone [4.0.0-alpha.12](https://github.com/visulima/visulima/compare/@visulima/deep-clone@4.0.0-alpha.11...@visulima/deep-clone@4.0.0-alpha.12) (2026-05-07)
2
32
 
3
33
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/deep-clone",
3
- "version": "4.0.0-alpha.12",
3
+ "version": "4.0.0-alpha.14",
4
4
  "description": "Fastest deep clone implementation.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -38,11 +38,6 @@
38
38
  "visulima"
39
39
  ],
40
40
  "homepage": "https://visulima.com/packages/deep-clone/",
41
- "license": "MIT",
42
- "author": {
43
- "name": "Daniel Bannert",
44
- "email": "d.bannert@anolilab.de"
45
- },
46
41
  "repository": {
47
42
  "type": "git",
48
43
  "url": "https://github.com/visulima/visulima.git",
@@ -58,19 +53,13 @@
58
53
  "url": "https://anolilab.com/support"
59
54
  }
60
55
  ],
61
- "files": [
62
- "dist/**",
63
- "README.md",
64
- "CHANGELOG.md",
65
- "LICENSE.md"
66
- ],
67
- "os": [
68
- "darwin",
69
- "linux",
70
- "win32"
71
- ],
72
- "type": "module",
56
+ "license": "MIT",
57
+ "author": {
58
+ "name": "Daniel Bannert",
59
+ "email": "d.bannert@anolilab.de"
60
+ },
73
61
  "sideEffects": false,
62
+ "type": "module",
74
63
  "exports": {
75
64
  ".": {
76
65
  "types": "./dist/index.d.ts",
@@ -86,11 +75,22 @@
86
75
  },
87
76
  "./package.json": "./package.json"
88
77
  },
78
+ "files": [
79
+ "dist/**",
80
+ "README.md",
81
+ "CHANGELOG.md",
82
+ "LICENSE.md"
83
+ ],
84
+ "engines": {
85
+ "node": "^22.14.0 || >=24.10.0"
86
+ },
87
+ "os": [
88
+ "darwin",
89
+ "linux",
90
+ "win32"
91
+ ],
89
92
  "publishConfig": {
90
93
  "access": "public",
91
94
  "provenance": true
92
- },
93
- "engines": {
94
- "node": "^22.14.0 || >=24.10.0"
95
95
  }
96
96
  }