lodash-omitdeep 1.6.4 → 1.7.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.
@@ -1,4 +1,4 @@
1
- import { Many, PartialObject, PropertyName } from 'lodash';
1
+ import type { Many, PartialObject, PropertyName } from 'lodash';
2
2
  export declare const needOmit: (value: any) => boolean;
3
3
  interface OmitDeep {
4
4
  <T extends object, K extends PropertyName[]>(object: T | null | undefined, ...paths: K): Pick<T, Exclude<keyof T, K[number]>>;
@@ -1,4 +1,4 @@
1
- import { Dictionary, NumericDictionary, PartialObject, ValueKeyIteratee } from 'lodash';
1
+ import type { Dictionary, NumericDictionary, PartialObject, ValueKeyIteratee } from 'lodash';
2
2
  interface OmitDeepBy {
3
3
  <T>(object: Dictionary<T> | null | undefined, predicate?: ValueKeyIteratee<T>): Dictionary<T>;
4
4
  <T>(object: NumericDictionary<T> | null | undefined, predicate?: ValueKeyIteratee<T>): NumericDictionary<T>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lodash-omitdeep",
3
3
  "type": "module",
4
- "version": "1.6.4",
4
+ "version": "1.7.0",
5
5
  "description": "lodash omitDeep/omitByDeep object key/value recursively",
6
6
  "author": {
7
7
  "name": "SIBERIA CAN CODE 🧊",
@@ -43,7 +43,7 @@
43
43
  ],
44
44
  "scripts": {
45
45
  "prepublishOnly": "yarn unit-test run && yarn build",
46
- "build": "shx rm -rf dist && vite build",
46
+ "build": "shx rm -rf dist && vite build && tsc",
47
47
  "lint": "eslint . --fix",
48
48
  "type": "tsc --noEmit",
49
49
  "format": "prettier --write .",
@@ -58,16 +58,16 @@
58
58
  "lodash": "^4"
59
59
  },
60
60
  "devDependencies": {
61
- "@siberiacancode/eslint": "^2.13.0",
62
- "@siberiacancode/prettier": "^1.4.0",
63
- "@siberiacancode/vitest": "^2.2.0",
64
- "@types/lodash": "^4.17.20",
65
- "@types/node": "^24.9.2",
61
+ "@siberiacancode/eslint": "^2.14.0",
62
+ "@siberiacancode/prettier": "^1.5.1",
63
+ "@siberiacancode/vitest": "^2.3.0",
64
+ "@types/lodash": "^4.17.21",
65
+ "@types/node": "^25.0.3",
66
66
  "husky": "^9.1.7",
67
- "lint-staged": "^16.2.6",
67
+ "lint-staged": "^16.2.7",
68
68
  "shx": "^0.4.0",
69
69
  "typescript": "^5.9.3",
70
- "vite": "^7.1.12",
70
+ "vite": "^7.3.0",
71
71
  "vite-plugin-dts": "^4.5.4"
72
72
  },
73
73
  "lint-staged": {
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};