@tb-dev/utils 4.0.2 → 4.0.3

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/dist/types.d.ts +1 -1
  2. package/package.json +4 -4
package/dist/types.d.ts CHANGED
@@ -35,5 +35,5 @@ export type Writeable<T> = {
35
35
  };
36
36
  /** Constructs a type consisting of some properties of T set to partial. */
37
37
  export type WithPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
38
- /** Constructs a type consisting of some properties of T set to partial. */
38
+ /** Constructs a type consisting of some properties of T set to required. */
39
39
  export type WithRequired<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tb-dev/utils",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "TypeScript utils",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -23,8 +23,8 @@
23
23
  "typescript"
24
24
  ],
25
25
  "devDependencies": {
26
- "@tb-dev/eslint-config": "^5.4.8",
27
- "@types/node": "^22.7.8",
26
+ "@tb-dev/eslint-config": "^5.4.9",
27
+ "@types/node": "^22.7.9",
28
28
  "@vitest/ui": "^2.1.3",
29
29
  "eslint": "^9.13.0",
30
30
  "prettier": "^3.3.3",
@@ -32,7 +32,7 @@
32
32
  "typedoc": "^0.26.10",
33
33
  "typedoc-plugin-mdn-links": "^3.3.4",
34
34
  "typescript": "^5.6.3",
35
- "vite": "^5.4.9",
35
+ "vite": "^5.4.10",
36
36
  "vite-plugin-dts": "^4.3.0",
37
37
  "vitest": "^2.1.3"
38
38
  },