@visulima/deep-clone 2.1.8 → 2.1.9
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 +12 -0
- package/README.md +1 -1
- package/package.json +2 -74
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @visulima/deep-clone [2.1.9](https://github.com/visulima/visulima/compare/@visulima/deep-clone@2.1.8...@visulima/deep-clone@2.1.9) (2025-01-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
|
|
10
|
+
* updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
|
|
11
|
+
* updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf))
|
|
12
|
+
|
|
1
13
|
## @visulima/deep-clone [2.1.8](https://github.com/visulima/visulima/compare/@visulima/deep-clone@2.1.7...@visulima/deep-clone@2.1.8) (2025-01-12)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -215,7 +215,7 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
215
215
|
The visulima deep-clone is open-sourced software licensed under the [MIT][license-url]
|
|
216
216
|
|
|
217
217
|
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
218
|
-
[typescript-url]: "typescript"
|
|
218
|
+
[typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
|
|
219
219
|
[license-image]: https://img.shields.io/npm/l/@visulima/deep-clone?color=blueviolet&style=for-the-badge
|
|
220
220
|
[license-url]: LICENSE.md "license"
|
|
221
221
|
[npm-image]: https://img.shields.io/npm/v/@visulima/deep-clone/latest.svg?style=for-the-badge&logo=npm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/deep-clone",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"description": "Fastest deep clone implementation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -115,51 +115,8 @@
|
|
|
115
115
|
"CHANGELOG.md",
|
|
116
116
|
"LICENSE.md"
|
|
117
117
|
],
|
|
118
|
-
"devDependencies": {
|
|
119
|
-
"@anolilab/eslint-config": "^15.0.3",
|
|
120
|
-
"@anolilab/prettier-config": "^5.0.14",
|
|
121
|
-
"@anolilab/semantic-release-pnpm": "^1.1.6",
|
|
122
|
-
"@anolilab/semantic-release-preset": "^9.0.3",
|
|
123
|
-
"@arethetypeswrong/cli": "^0.17.2",
|
|
124
|
-
"@mfederczuk/deeptools": "2.1.0-indev01",
|
|
125
|
-
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
126
|
-
"@total-typescript/ts-reset": "^0.6.1",
|
|
127
|
-
"@types/lodash.clonedeep": "^4.5.9",
|
|
128
|
-
"@types/node": "18.19.15",
|
|
129
|
-
"@ungap/structured-clone": "^1.2.1",
|
|
130
|
-
"@visulima/packem": "1.10.7",
|
|
131
|
-
"@vitest/coverage-v8": "^2.1.8",
|
|
132
|
-
"@vitest/ui": "^2.1.8",
|
|
133
|
-
"clone-deep": "^4.0.1",
|
|
134
|
-
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
135
|
-
"cross-env": "^7.0.3",
|
|
136
|
-
"deep-copy": "^1.4.2",
|
|
137
|
-
"esbuild": "0.24.2",
|
|
138
|
-
"eslint": "8.57.0",
|
|
139
|
-
"eslint-plugin-deprecation": "^3.0.0",
|
|
140
|
-
"eslint-plugin-etc": "^2.0.3",
|
|
141
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
142
|
-
"eslint-plugin-mdx": "^3.1.5",
|
|
143
|
-
"eslint-plugin-tsdoc": "^0.4.0",
|
|
144
|
-
"eslint-plugin-vitest": "^0.4.1",
|
|
145
|
-
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
146
|
-
"fast-copy": "^3.0.2",
|
|
147
|
-
"jsdom": "^26.0.0",
|
|
148
|
-
"lodash.clonedeep": "^4.5.0",
|
|
149
|
-
"nano-copy": "^0.1.1",
|
|
150
|
-
"nanoclone": "^1.0.2",
|
|
151
|
-
"plain-object-clone": "^2.0.0",
|
|
152
|
-
"prettier": "^3.4.2",
|
|
153
|
-
"ramda": "^0.30.1",
|
|
154
|
-
"rfdc": "^1.4.1",
|
|
155
|
-
"rimraf": "6.0.1",
|
|
156
|
-
"semantic-release": "24.2.1",
|
|
157
|
-
"standard": "^17.1.2",
|
|
158
|
-
"typescript": "5.7.3",
|
|
159
|
-
"vitest": "^2.1.8"
|
|
160
|
-
},
|
|
161
118
|
"engines": {
|
|
162
|
-
"node": ">=18
|
|
119
|
+
"node": ">=18.0.0 <=23.x"
|
|
163
120
|
},
|
|
164
121
|
"os": [
|
|
165
122
|
"darwin",
|
|
@@ -169,34 +126,5 @@
|
|
|
169
126
|
"publishConfig": {
|
|
170
127
|
"access": "public",
|
|
171
128
|
"provenance": true
|
|
172
|
-
},
|
|
173
|
-
"anolilab": {
|
|
174
|
-
"eslint-config": {
|
|
175
|
-
"plugin": {
|
|
176
|
-
"tsdoc": false
|
|
177
|
-
},
|
|
178
|
-
"warn_on_unsupported_typescript_version": false,
|
|
179
|
-
"info_on_disabling_jsx_react_rule": false,
|
|
180
|
-
"info_on_disabling_prettier_conflict_rule": false,
|
|
181
|
-
"info_on_disabling_jsonc_sort_keys_rule": false,
|
|
182
|
-
"info_on_disabling_etc_no_deprecated": false
|
|
183
|
-
}
|
|
184
|
-
},
|
|
185
|
-
"scripts": {
|
|
186
|
-
"build": "cross-env NODE_ENV=development packem build",
|
|
187
|
-
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
188
|
-
"clean": "rimraf node_modules dist .eslintcache",
|
|
189
|
-
"dev": "pnpm run build --watch",
|
|
190
|
-
"lint:attw": "attw --pack",
|
|
191
|
-
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
192
|
-
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
193
|
-
"lint:package-json": "publint --strict",
|
|
194
|
-
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
195
|
-
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
196
|
-
"lint:types": "tsc --noEmit",
|
|
197
|
-
"test": "vitest run",
|
|
198
|
-
"test:coverage": "vitest run --coverage",
|
|
199
|
-
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
200
|
-
"test:watch": "vitest"
|
|
201
129
|
}
|
|
202
130
|
}
|