@aneuhold/core-ts-lib 2.3.13 → 2.3.15

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 +15 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ 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.15] (2025-12-14)
9
+
10
+ ### 🏗️ Changed
11
+ - Updated dependencies for compatibility
12
+
13
+
14
+ ## 🔖 [2.3.14] (2025-12-07)
15
+
16
+ ### 🏗️ Changed
17
+
18
+ - Updated all type imports to use `import type` for improved clarity and build performance.
19
+ - Updated dependencies: now requires `prettier@^3.7.4`, `tsx@^4.21.0`, and `vitest@^4.0.15`.
20
+
8
21
  ## 🔖 [2.3.13] (2025-12-07)
9
22
 
10
23
  ### 🏗️ Changed
@@ -151,7 +164,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
151
164
  - Updated workflow permissions to allow repository write access
152
165
 
153
166
  <!-- Link References -->
154
-
167
+ [2.3.15]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.14...core-ts-lib-v2.3.15
168
+ [2.3.14]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.13...core-ts-lib-v2.3.14
155
169
  [2.3.13]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.12...core-ts-lib-v2.3.13
156
170
  [2.3.12]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.11...core-ts-lib-v2.3.12
157
171
  [2.3.11]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.10...core-ts-lib-v2.3.11
package/package.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@aneuhold/core-ts-lib",
3
3
  "author": "Anton G. Neuhold Jr.",
4
4
  "license": "MIT",
5
- "version": "2.3.13",
5
+ "version": "2.3.15",
6
6
  "description": "A core library for all of my TypeScript projects",
7
- "packageManager": "pnpm@10.12.1",
7
+ "packageManager": "pnpm@10.25.0",
8
8
  "type": "module",
9
9
  "scripts": {
10
10
  "build": "rimraf lib && pnpm build:withoutClean",
@@ -20,7 +20,7 @@
20
20
  "checkAll": "pnpm build && pnpm lint && pnpm test && pnpm jsr:validate",
21
21
  "jsr:publish": "tsx ./scripts/publishJsr.ts",
22
22
  "npm:publish": "npm publish --access public",
23
- "upgrade:all": "pnpm up"
23
+ "upgrade:all": "pnpm update '!@aneuhold/*' --latest"
24
24
  },
25
25
  "main": "lib/browser.js",
26
26
  "types": "lib/browser.d.ts",
@@ -67,14 +67,14 @@
67
67
  "Node.js"
68
68
  ],
69
69
  "devDependencies": {
70
- "@types/node": "^24.10.1",
71
- "eslint": "^9.39.1",
70
+ "@types/node": "^25.0.2",
71
+ "eslint": "^9.39.2",
72
72
  "jsr": "^0.13.5",
73
73
  "nodemon": "^3.1.11",
74
- "prettier": "^3.7.2",
74
+ "prettier": "^3.7.4",
75
75
  "rimraf": "^6.1.2",
76
- "tsx": "^4.20.6",
76
+ "tsx": "^4.21.0",
77
77
  "typescript": "~5.9.3",
78
- "vitest": "^4.0.14"
78
+ "vitest": "^4.0.15"
79
79
  }
80
80
  }