nhb-toolbox 4.20.44 → 4.20.46

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 +4 -0
  2. package/package.json +14 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ All notable changes to the package will be documented here.
6
6
 
7
7
  ---
8
8
 
9
+ ## [4.20.46] - 2025-09-22
10
+
11
+ - `Chronos` class is now _exported via subpath_ `'nhb-toolbox/chronos'`.
12
+
9
13
  ## [4.20.44] - 2025-09-20
10
14
 
11
15
  - **Updated** type related issues in `Finder` class. Now it accepts _array of objects only_.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nhb-toolbox",
3
- "version": "4.20.44",
3
+ "version": "4.20.46",
4
4
  "description": "A versatile collection of smart, efficient, and reusable utility functions and classes for everyday development needs.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -38,21 +38,21 @@
38
38
  },
39
39
  "license": "Apache-2.0",
40
40
  "devDependencies": {
41
- "@eslint/js": "^9.35.0",
41
+ "@eslint/js": "^9.36.0",
42
42
  "@types/jest": "^30.0.0",
43
43
  "@types/node": "^24.5.2",
44
44
  "@typescript-eslint/eslint-plugin": "^8.44.0",
45
45
  "@typescript-eslint/parser": "^8.44.0",
46
- "eslint": "^9.35.0",
46
+ "eslint": "^9.36.0",
47
47
  "eslint-config-prettier": "^10.1.8",
48
48
  "eslint-plugin-prettier": "^5.5.4",
49
49
  "globals": "^16.4.0",
50
50
  "husky": "^9.1.7",
51
51
  "jest": "^30.1.3",
52
- "lint-staged": "^16.1.6",
53
- "nhb-scripts": "^1.8.70",
52
+ "lint-staged": "^16.2.0",
53
+ "nhb-scripts": "^1.8.80",
54
54
  "prettier": "^3.6.2",
55
- "ts-jest": "^29.4.3",
55
+ "ts-jest": "^29.4.4",
56
56
  "typescript": "^5.9.2",
57
57
  "typescript-eslint": "^8.44.0"
58
58
  },
@@ -112,6 +112,11 @@
112
112
  "import": "./dist/esm/constants.js",
113
113
  "require": "./dist/cjs/constants.js"
114
114
  },
115
+ "./chronos": {
116
+ "types": "./dist/dts/date/Chronos.d.ts",
117
+ "import": "./dist/esm/date/Chronos.js",
118
+ "require": "./dist/cjs/date/Chronos.js"
119
+ },
115
120
  "./stylog": {
116
121
  "types": "./dist/dts/utils/stylog.d.ts",
117
122
  "import": "./dist/esm/utils/stylog.js",
@@ -210,6 +215,9 @@
210
215
  "constants": [
211
216
  "dist/dts/constants.d.ts"
212
217
  ],
218
+ "chronos": [
219
+ "dist/dts/date/Chronos.d.ts"
220
+ ],
213
221
  "stylog": [
214
222
  "dist/dts/utils/stylog.d.ts"
215
223
  ],