@aneuhold/be-ts-lib 2.0.81 → 2.0.83
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 +30 -0
- package/package.json +5 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## 🔖 [2.0.83] (2025-06-25)
|
|
9
|
+
|
|
10
|
+
### ✅ Added
|
|
11
|
+
|
|
12
|
+
- CHANGELOG.md file now included in published package
|
|
13
|
+
|
|
14
|
+
## 🔖 [2.0.82] (2025-06-19)
|
|
15
|
+
|
|
16
|
+
### 🏗️ Changed
|
|
17
|
+
|
|
18
|
+
- Updated dependencies: `@types/node` to ^22.15.32, `eslint` to ^9.29.0, `tsx` to ^4.20.3, `vitest` to ^3.2.4
|
|
19
|
+
- Updated package.json scripts and configurations
|
|
20
|
+
|
|
21
|
+
### 🩹 Fixed
|
|
22
|
+
|
|
23
|
+
- Fixed GitHub Actions deployment workflow authentication issues
|
|
24
|
+
- Added proper GitHub token configuration for git tag creation
|
|
25
|
+
- Updated workflow permissions to allow repository write access
|
|
26
|
+
|
|
27
|
+
<!-- Link References -->
|
|
28
|
+
|
|
29
|
+
[2.0.83]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.82...be-ts-lib-v2.0.83
|
|
30
|
+
[2.0.82]: https://github.com/aneuhold/ts-libs/releases/tag/be-ts-lib-v2.0.82
|
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.
|
|
5
|
+
"version": "2.0.83",
|
|
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",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"watch": "nodemon --ignore lib/ -e ts --exec \"tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts && local-npm publish\"",
|
|
12
12
|
"lint": "eslint",
|
|
13
13
|
"test": "vitest run",
|
|
14
|
-
"
|
|
14
|
+
"preparePkg": "tb pkg prepare",
|
|
15
15
|
"jsr:validate": "tb pkg validateJsr",
|
|
16
16
|
"npm:validate": "tb pkg validateNpm",
|
|
17
17
|
"checkAll": "pnpm build && pnpm lint && pnpm test && pnpm jsr:validate",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"module": "lib/index.js",
|
|
25
25
|
"types": "lib/index.d.ts",
|
|
26
26
|
"files": [
|
|
27
|
-
"lib"
|
|
27
|
+
"lib",
|
|
28
|
+
"CHANGELOG.md"
|
|
28
29
|
],
|
|
29
30
|
"exports": {
|
|
30
31
|
".": {
|
|
@@ -66,4 +67,4 @@
|
|
|
66
67
|
"typescript": "^5.8.3",
|
|
67
68
|
"vitest": "^3.2.4"
|
|
68
69
|
}
|
|
69
|
-
}
|
|
70
|
+
}
|