@aneuhold/core-ts-lib 2.3.6 → 2.3.8

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 -0
  2. package/package.json +7 -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.8] (2025-11-08)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Updated dependencies for compatibility and security improvements
13
+
14
+ ## 🔖 [2.3.7] (2025-11-07)
15
+
16
+ ### 🏗️ Changed
17
+
18
+ - Updated package.json: changed `main` and `types` fields to use browser entry points
19
+ - Removed unused `module` field from package.json
20
+
8
21
  ## 🔖 [2.3.6] (2025-11-06)
9
22
 
10
23
  ### ✅ Added
@@ -99,6 +112,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
112
 
100
113
  <!-- Link References -->
101
114
 
115
+ [2.3.8]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.7...core-ts-lib-v2.3.8
116
+ [2.3.7]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.6...core-ts-lib-v2.3.7
102
117
  [2.3.6]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.5...core-ts-lib-v2.3.6
103
118
  [2.3.5]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.4...core-ts-lib-v2.3.5
104
119
  [2.3.4]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.3.3...core-ts-lib-v2.3.4
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.6",
5
+ "version": "2.3.8",
6
6
  "description": "A core library for all of my TypeScript projects",
7
7
  "packageManager": "pnpm@10.12.1",
8
8
  "type": "module",
@@ -19,9 +19,8 @@
19
19
  "npm:publish": "npm publish --access public",
20
20
  "upgrade:all": "pnpm up"
21
21
  },
22
- "main": "lib/index.js",
23
- "module": "lib/index.js",
24
- "types": "lib/index.d.ts",
22
+ "main": "lib/browser.js",
23
+ "types": "lib/browser.d.ts",
25
24
  "files": [
26
25
  "lib",
27
26
  "CHANGELOG.md"
@@ -65,14 +64,14 @@
65
64
  "Node.js"
66
65
  ],
67
66
  "devDependencies": {
68
- "@types/node": "^24.9.1",
69
- "eslint": "^9.38.0",
67
+ "@types/node": "^24.10.0",
68
+ "eslint": "^9.39.1",
70
69
  "jsr": "^0.13.5",
71
70
  "nodemon": "^3.1.10",
72
71
  "prettier": "^3.6.2",
73
- "rimraf": "^6.0.1",
72
+ "rimraf": "^6.1.0",
74
73
  "tsx": "^4.20.6",
75
74
  "typescript": "~5.9.3",
76
- "vitest": "^4.0.3"
75
+ "vitest": "^4.0.8"
77
76
  }
78
77
  }