@aneuhold/core-ts-lib 2.4.0 → 2.4.2
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 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.4.2] (2026-03-13)
|
|
9
|
+
|
|
10
|
+
### 🩹 Fixed
|
|
11
|
+
|
|
12
|
+
- Replaced deprecated `rmdir` with `rm` in `ChangelogService` test cleanup.
|
|
13
|
+
|
|
14
|
+
## 🔖 [2.4.1] (2026-02-28)
|
|
15
|
+
|
|
16
|
+
### 🏗️ Changed
|
|
17
|
+
|
|
18
|
+
- Updated `tsconfig.json` to exclude the `lib` directory from TypeScript compilation.
|
|
19
|
+
|
|
8
20
|
## 🔖 [2.4.0] (2026-02-22)
|
|
9
21
|
|
|
10
22
|
### ✅ Added
|
|
@@ -203,6 +215,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
203
215
|
|
|
204
216
|
<!-- Link References -->
|
|
205
217
|
|
|
218
|
+
[2.4.2]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.1...core-ts-lib-v2.4.2
|
|
219
|
+
[2.4.1]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.0...core-ts-lib-v2.4.1
|
|
206
220
|
[2.4.0]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.19...core-ts-lib-v2.4.0
|
|
207
221
|
[2.3.19]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.18...core-ts-lib-v2.3.19
|
|
208
222
|
[2.3.18]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.17...core-ts-lib-v2.3.18
|
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.4.
|
|
5
|
+
"version": "2.4.2",
|
|
6
6
|
"description": "A core library for all of my TypeScript projects",
|
|
7
7
|
"packageManager": "pnpm@10.25.0",
|
|
8
8
|
"type": "module",
|
|
@@ -78,4 +78,4 @@
|
|
|
78
78
|
"typescript": "~5.9.3",
|
|
79
79
|
"vitest": "^4.0.15"
|
|
80
80
|
}
|
|
81
|
-
}
|
|
81
|
+
}
|