lodash-omitdeep 1.9.0 → 1.10.0

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/README.md +1 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -28,6 +28,7 @@ $ yarn add lodash-omitdeep
28
28
 
29
29
  ```js
30
30
  import { omitDeep } from 'lodash-omitdeep';
31
+
31
32
  omitDeep({ a: 'a', b: 'b', c: { b: 'b', d: { b: 'b', f: 'f' } } }, 'b');
32
33
  //=> {a: "a", c: {d: {f: "f"}}}
33
34
  omitDeep({ a: 'a', b: 'b', c: { b: 'b', d: { b: 'b', f: 'f' } } }, ['a', 'b']);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lodash-omitdeep",
3
3
  "type": "module",
4
- "version": "1.9.0",
4
+ "version": "1.10.0",
5
5
  "description": "lodash omitDeep/omitByDeep object key/value recursively",
6
6
  "author": {
7
7
  "name": "SIBERIA CAN CODE 🧊",
@@ -65,15 +65,15 @@
65
65
  "lodash": "^4"
66
66
  },
67
67
  "devDependencies": {
68
- "@siberiacancode/eslint": "^2.15.2",
69
- "@siberiacancode/prettier": "^1.6.1",
68
+ "@siberiacancode/eslint": "^2.17.0",
69
+ "@siberiacancode/prettier": "^1.7.0",
70
70
  "@siberiacancode/vitest": "^2.4.1",
71
71
  "@types/lodash": "^4.17.24",
72
- "@types/node": "^25.3.2",
72
+ "@types/node": "^25.9.1",
73
73
  "husky": "^9.1.7",
74
- "lint-staged": "^16.2.7",
75
- "tsdown": "^0.20.3",
76
- "typescript": "^5.9.3"
74
+ "lint-staged": "^17.0.5",
75
+ "tsdown": "^0.22.1",
76
+ "typescript": "^6.0.3"
77
77
  },
78
78
  "lint-staged": {
79
79
  "*.{js,ts}": [