@visulima/deep-clone 1.0.6 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +19 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## @visulima/deep-clone [1.0.8](https://github.com/visulima/visulima/compare/@visulima/deep-clone@1.0.7...@visulima/deep-clone@1.0.8) (2024-01-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated all deps, updated test based on eslint errors ([909f8f3](https://github.com/visulima/visulima/commit/909f8f384804d7ef140354ab44f867532dbc9847))
7
+
8
+ ## @visulima/deep-clone [1.0.7](https://github.com/visulima/visulima/compare/@visulima/deep-clone@1.0.6...@visulima/deep-clone@1.0.7) (2023-11-30)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * updated dep versions ([ed70375](https://github.com/visulima/visulima/commit/ed7037584477dbda4a8a6405a1104876e8a6c703))
14
+
1
15
  ## @visulima/deep-clone [1.0.6](https://github.com/visulima/visulima/compare/@visulima/deep-clone@1.0.5...@visulima/deep-clone@1.0.6) (2023-11-30)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/deep-clone",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Fastest deep clone implementation.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -81,7 +81,6 @@
81
81
  "build": "cross-env NODE_ENV=development tsup",
82
82
  "build:prod": "cross-env NODE_ENV=production tsup",
83
83
  "clean": "rimraf node_modules dist .eslintcache",
84
- "coverage": "vitest run --coverage",
85
84
  "dev": "pnpm run build --watch",
86
85
  "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
87
86
  "lint:eslint:fix": "pnpm run lint:eslint --fix",
@@ -91,47 +90,50 @@
91
90
  "lint:types": "tsc --noEmit",
92
91
  "test": "vitest run",
93
92
  "test:bench": "vitest bench",
93
+ "test:coverage": "vitest run --coverage",
94
+ "test:ui": "vitest --ui --coverage.enabled=true",
94
95
  "test:watch": "vitest"
95
96
  },
96
97
  "devDependencies": {
97
- "@anolilab/eslint-config": "^15.0.2",
98
- "@anolilab/prettier-config": "^5.0.13",
99
- "@anolilab/semantic-release-preset": "^8.0.2",
98
+ "@anolilab/eslint-config": "^15.0.3",
99
+ "@anolilab/prettier-config": "^5.0.14",
100
+ "@anolilab/semantic-release-preset": "^8.0.3",
100
101
  "@mfederczuk/deeptools": "2.1.0-indev01",
101
- "@rushstack/eslint-plugin-security": "^0.7.1",
102
+ "@rushstack/eslint-plugin-security": "^0.8.0",
102
103
  "@total-typescript/ts-reset": "^0.5.1",
103
104
  "@types/lodash.clonedeep": "^4.5.9",
104
105
  "@types/node": "18.18.8",
105
106
  "@ungap/structured-clone": "^1.2.0",
106
- "@vitest/coverage-v8": "^0.34.6",
107
+ "@vitest/coverage-v8": "^1.2.1",
108
+ "@vitest/ui": "^1.2.1",
107
109
  "clone-deep": "^4.0.1",
108
110
  "cross-env": "^7.0.3",
109
111
  "deep-copy": "^1.4.2",
110
- "eslint": "^8.54.0",
112
+ "eslint": "^8.56.0",
111
113
  "eslint-plugin-deprecation": "^2.0.0",
112
114
  "eslint-plugin-etc": "^2.0.3",
113
- "eslint-plugin-mdx": "^2.2.0",
115
+ "eslint-plugin-mdx": "^3.1.5",
114
116
  "eslint-plugin-tsdoc": "^0.2.17",
115
- "eslint-plugin-vitest": "^0.3.10",
117
+ "eslint-plugin-vitest": "^0.3.20",
116
118
  "eslint-plugin-vitest-globals": "^1.4.0",
117
119
  "fast-copy": "^3.0.1",
118
- "jsdom": "^23.0.0",
119
- "jsondiffpatch": "^0.5.0",
120
+ "jsdom": "^23.2.0",
121
+ "jsondiffpatch": "^0.6.0",
120
122
  "lodash.clonedeep": "^4.5.0",
121
123
  "nano-copy": "^0.1.0",
122
124
  "nanoclone": "^1.0.2",
123
125
  "plain-object-clone": "^2.0.0",
124
- "prettier": "^3.1.0",
126
+ "prettier": "^3.2.4",
125
127
  "ramda": "^0.29.1",
126
128
  "rfdc": "^1.3.0",
127
129
  "rimraf": "^5.0.5",
128
- "semantic-release": "^22.0.8",
130
+ "semantic-release": "^23.0.0",
129
131
  "sort-package-json": "^2.6.0",
130
132
  "standard": "^17.1.0",
131
133
  "tsup": "^8.0.1",
132
- "type-fest": "^4.8.2",
133
- "typescript": "^5.3.2",
134
- "vitest": "^0.34.6"
134
+ "type-fest": "^4.9.0",
135
+ "typescript": "^5.3.3",
136
+ "vitest": "^1.2.1"
135
137
  },
136
138
  "engines": {
137
139
  "node": ">=18.* <=21.*"