@aneuhold/be-ts-lib 2.0.86 → 2.0.88

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 +14 -0
  2. package/package.json +15 -13
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.0.88] (2025-11-06)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Marked package as having side effects in package.json ("sideEffects": true) and added explanatory comment.
13
+
14
+ ## 🔖 [2.0.87] (2025-10-25)
15
+
16
+ ### 🏗️ Changed
17
+
18
+ - Updated dependencies in package.json for compatibility and security improvements
19
+
8
20
  ## 🔖 [2.0.86] (2025-10-17)
9
21
 
10
22
  ### 🏗️ Changed
@@ -44,6 +56,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
44
56
 
45
57
  <!-- Link References -->
46
58
 
59
+ [2.0.88]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.87...be-ts-lib-v2.0.88
60
+ [2.0.87]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.86...be-ts-lib-v2.0.87
47
61
  [2.0.86]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.85...be-ts-lib-v2.0.86
48
62
  [2.0.85]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.84...be-ts-lib-v2.0.85
49
63
  [2.0.84]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.83...be-ts-lib-v2.0.84
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aneuhold/be-ts-lib",
3
3
  "author": "Anton G. Neuhold Jr.",
4
4
  "license": "MIT",
5
- "version": "2.0.86",
5
+ "version": "2.0.88",
6
6
  "description": "A backend TypeScript library used for common functionality in personal backend projects.",
7
7
  "packageManager": "pnpm@10.12.1",
8
8
  "type": "module",
@@ -33,6 +33,8 @@
33
33
  "import": "./lib/index.js"
34
34
  }
35
35
  },
36
+ "sideEffects": true,
37
+ "sideEffectsComment": "This package has side effects in that it uses dotenv/config in a couple places",
36
38
  "repository": {
37
39
  "type": "git",
38
40
  "url": "git+https://github.com/aneuhold/ts-libs.git",
@@ -50,22 +52,22 @@
50
52
  "dependencies": {
51
53
  "@aneuhold/core-ts-api-lib": "*",
52
54
  "@aneuhold/core-ts-lib": "*",
53
- "dotenv": "^16.5.0",
55
+ "dotenv": "^17.2.3",
54
56
  "jsonc-parser": "^3.3.1",
55
- "node-fetch": "^2",
56
- "octokit": "^3.1.2"
57
+ "node-fetch": "^3.3.2",
58
+ "octokit": "^5.0.4"
57
59
  },
58
60
  "devDependencies": {
59
61
  "@aneuhold/local-npm-registry": "*",
60
- "@aneuhold/main-scripts": "^2.5.2",
61
- "@types/node": "^22.15.32",
62
- "@types/node-fetch": "^2.6.12",
63
- "eslint": "^9.29.0",
64
- "jsr": "^0.13.4",
65
- "prettier": "^3.5.3",
62
+ "@aneuhold/main-scripts": "^2.6.1",
63
+ "@types/node": "^24.9.1",
64
+ "@types/node-fetch": "^2.6.13",
65
+ "eslint": "^9.38.0",
66
+ "jsr": "^0.13.5",
67
+ "prettier": "^3.6.2",
66
68
  "rimraf": "^6.0.1",
67
- "tsx": "^4.20.3",
68
- "typescript": "^5.8.3",
69
- "vitest": "^3.2.4"
69
+ "tsx": "^4.20.6",
70
+ "typescript": "^5.9.3",
71
+ "vitest": "^4.0.3"
70
72
  }
71
73
  }