@aneuhold/core-ts-lib 2.3.13 → 2.3.14

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 +8 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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.14] (2025-12-07)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Updated all type imports to use `import type` for improved clarity and build performance.
13
+ - Updated dependencies: now requires `prettier@^3.7.4`, `tsx@^4.21.0`, and `vitest@^4.0.15`.
14
+
8
15
  ## 🔖 [2.3.13] (2025-12-07)
9
16
 
10
17
  ### 🏗️ Changed
@@ -152,6 +159,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
152
159
 
153
160
  <!-- Link References -->
154
161
 
162
+ [2.3.14]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.13...core-ts-lib-v2.3.14
155
163
  [2.3.13]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.12...core-ts-lib-v2.3.13
156
164
  [2.3.12]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.11...core-ts-lib-v2.3.12
157
165
  [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,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.13",
5
+ "version": "2.3.14",
6
6
  "description": "A core library for all of my TypeScript projects",
7
7
  "packageManager": "pnpm@10.12.1",
8
8
  "type": "module",
@@ -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",
@@ -71,10 +71,10 @@
71
71
  "eslint": "^9.39.1",
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
+ }