@visulima/deep-clone 1.0.0 → 1.0.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.
- package/CHANGELOG.md +7 -0
- package/README.md +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @visulima/deep-clone [1.0.1](https://github.com/visulima/visulima/compare/@visulima/deep-clone@1.0.0...@visulima/deep-clone@1.0.1) (2023-10-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fixed README.md ([16b6891](https://github.com/visulima/visulima/commit/16b6891c10cc5cdfeb571ce4ecd816d9c6d871ca))
|
|
7
|
+
|
|
1
8
|
## @visulima/deep-clone 1.0.0 (2023-10-16)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -135,14 +135,14 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
135
135
|
|
|
136
136
|
## License
|
|
137
137
|
|
|
138
|
-
The visulima
|
|
138
|
+
The visulima deep-clone is open-sourced software licensed under the [MIT][license-url]
|
|
139
139
|
|
|
140
140
|
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
141
141
|
[typescript-url]: "typescript"
|
|
142
|
-
[license-image]: https://img.shields.io/npm/l/@visulima/
|
|
142
|
+
[license-image]: https://img.shields.io/npm/l/@visulima/deep-clone?color=blueviolet&style=for-the-badge
|
|
143
143
|
[license-url]: LICENSE.md "license"
|
|
144
|
-
[npm-image]: https://img.shields.io/npm/v/@visulima/
|
|
145
|
-
[npm-url]: https://www.npmjs.com/package/@visulima/
|
|
144
|
+
[npm-image]: https://img.shields.io/npm/v/@visulima/deep-clone/latest.svg?style=for-the-badge&logo=npm
|
|
145
|
+
[npm-url]: https://www.npmjs.com/package/@visulima/deep-clone/v/latest "npm"
|
|
146
146
|
[mdn-error]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
|
|
147
147
|
[mdn-type-error]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError
|
|
148
148
|
[mdn-syntax-error]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/deep-clone",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Fastest deep clone implementation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -102,17 +102,18 @@
|
|
|
102
102
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
103
103
|
"@types/lodash.clonedeep": "^4.5.7",
|
|
104
104
|
"@types/node": "18.17.12",
|
|
105
|
+
"@ungap/structured-clone": "^1.2.0",
|
|
105
106
|
"@vitest/coverage-v8": "^0.34.6",
|
|
106
107
|
"clone-deep": "^4.0.1",
|
|
107
108
|
"cross-env": "^7.0.3",
|
|
108
109
|
"deep-copy": "^1.4.2",
|
|
109
110
|
"eslint": "^8.51.0",
|
|
111
|
+
"eslint-plugin-deprecation": "^2.0.0",
|
|
110
112
|
"eslint-plugin-etc": "^2.0.3",
|
|
111
113
|
"eslint-plugin-mdx": "^2.2.0",
|
|
112
114
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
113
115
|
"eslint-plugin-vitest": "^0.3.2",
|
|
114
116
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
115
|
-
"eslint-plugin-deprecation": "^2.0.0",
|
|
116
117
|
"fast-copy": "^3.0.1",
|
|
117
118
|
"jsdom": "^22.1.0",
|
|
118
119
|
"jsondiffpatch": "^0.5.0",
|
|
@@ -128,7 +129,6 @@
|
|
|
128
129
|
"sort-package-json": "^2.6.0",
|
|
129
130
|
"standard": "^17.1.0",
|
|
130
131
|
"tsup": "^7.2.0",
|
|
131
|
-
"@ungap/structured-clone": "^1.2.0",
|
|
132
132
|
"type-fest": "^4.4.0",
|
|
133
133
|
"typescript": "^5.2.2",
|
|
134
134
|
"vitest": "^0.34.6"
|