@aneuhold/core-ts-lib 2.3.16 → 2.3.17
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.
- package/CHANGELOG.md +14 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,16 +5,27 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 🔖 [2.3.17] (2026-02-06)
|
|
9
|
+
|
|
10
|
+
### ✅ Added
|
|
11
|
+
|
|
12
|
+
- Added `check` script (`tsc --noEmit`) to validate TypeScript types locally and in CI.
|
|
13
|
+
|
|
14
|
+
### 🏗️ Changed
|
|
15
|
+
|
|
16
|
+
- Bumped package version to `2.3.17`.
|
|
17
|
+
|
|
8
18
|
## 🔖 [2.3.16] (2025-12-14)
|
|
9
19
|
|
|
10
20
|
### ✅ Added
|
|
21
|
+
|
|
11
22
|
- Added `DateService.reviveDatesRecursive()` to recursively revive dates in objects.
|
|
12
23
|
|
|
13
24
|
## 🔖 [2.3.15] (2025-12-14)
|
|
14
25
|
|
|
15
26
|
### 🏗️ Changed
|
|
16
|
-
- Updated dependencies for compatibility
|
|
17
27
|
|
|
28
|
+
- Updated dependencies for compatibility
|
|
18
29
|
|
|
19
30
|
## 🔖 [2.3.14] (2025-12-07)
|
|
20
31
|
|
|
@@ -169,6 +180,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
169
180
|
- Updated workflow permissions to allow repository write access
|
|
170
181
|
|
|
171
182
|
<!-- Link References -->
|
|
183
|
+
|
|
184
|
+
[2.3.17]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.16...core-ts-lib-v2.3.17
|
|
172
185
|
[2.3.16]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.15...core-ts-lib-v2.3.16
|
|
173
186
|
[2.3.15]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.14...core-ts-lib-v2.3.15
|
|
174
187
|
[2.3.14]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.13...core-ts-lib-v2.3.14
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aneuhold/core-ts-lib",
|
|
3
3
|
"author": "Anton G. Neuhold Jr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.3.
|
|
5
|
+
"version": "2.3.17",
|
|
6
6
|
"description": "A core library for all of my TypeScript projects",
|
|
7
7
|
"packageManager": "pnpm@10.25.0",
|
|
8
8
|
"type": "module",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"propagateVersion": "tsx ../../scripts/propagateVersion.ts",
|
|
13
13
|
"watch": "nodemon --ignore lib/ -e ts --exec \"pnpm build:withoutClean\"",
|
|
14
14
|
"lint": "eslint",
|
|
15
|
+
"check": "tsc --noEmit",
|
|
15
16
|
"test": "vitest run",
|
|
16
17
|
"preparePkg": "tsx ./scripts/bumpVersionAndInitializeChangelog.ts",
|
|
17
18
|
"jsr:validate": "tsx ./scripts/validateJsrPublish.ts",
|