@tb-dev/utils 1.2.1 → 1.2.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 (1) hide show
  1. package/package.json +11 -12
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@tb-dev/utils",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "TypeScript utils",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "private": false,
8
- "packageManager": "pnpm@8.14.1",
8
+ "packageManager": "pnpm@8.15.1",
9
9
  "homepage": "https://tb.dev.br/utils/",
10
10
  "author": {
11
11
  "name": "Andrew Ferreira",
@@ -28,22 +28,22 @@
28
28
  "*.{?(c|m)@(j|t)s,vue}": "pnpm run lint"
29
29
  },
30
30
  "dependencies": {
31
- "@tb-dev/utility-types": "^1.1.0"
31
+ "@tb-dev/utility-types": "^1.1.2"
32
32
  },
33
33
  "devDependencies": {
34
- "@tb-dev/eslint-config": "^1.6.5",
35
- "@types/node": "^20.11.5",
34
+ "@tb-dev/eslint-config": "^1.7.0",
35
+ "@types/node": "^20.11.16",
36
36
  "eslint": "^8.56.0",
37
37
  "husky": "^8.0.3",
38
- "lint-staged": "^15.2.0",
39
- "prettier": "^3.2.4",
40
- "taze": "^0.13.1",
38
+ "lint-staged": "^15.2.1",
39
+ "prettier": "^3.2.5",
40
+ "taze": "^0.13.2",
41
41
  "tslib": "^2.6.2",
42
42
  "typedoc": "^0.25.7",
43
- "typedoc-plugin-mdn-links": "^3.1.12",
43
+ "typedoc-plugin-mdn-links": "^3.1.15",
44
44
  "typescript": "5.3.3",
45
45
  "vite": "^5.0.12",
46
- "vite-plugin-dts": "^3.7.1"
46
+ "vite-plugin-dts": "^3.7.2"
47
47
  },
48
48
  "files": [
49
49
  "dist"
@@ -60,12 +60,11 @@
60
60
  },
61
61
  "scripts": {
62
62
  "build": "vite build",
63
- "bump": "miho bump -k -a .",
64
63
  "docs": "typedoc --plugin typedoc-plugin-mdn-links",
65
64
  "format": "prettier . --write",
66
65
  "format-check": "prettier . --check",
67
66
  "lint": "eslint . --config eslint.config.js --cache",
68
- "release": "pnpm run build && pnpm run bump && pnpm publish",
67
+ "release": "pnpm run build && pnpm publish",
69
68
  "type-check": "tsc --noEmit"
70
69
  }
71
70
  }