@aneuhold/be-ts-lib 2.0.88 → 2.0.89

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 +2 -2
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.0.89] (2025-11-07)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Updated package.json: added `unpub:local` script for local unpublishing
13
+ - Removed unused `module` field from package.json
14
+
8
15
  ## 🔖 [2.0.88] (2025-11-06)
9
16
 
10
17
  ### 🏗️ Changed
@@ -56,6 +63,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
56
63
 
57
64
  <!-- Link References -->
58
65
 
66
+ [2.0.89]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.88...be-ts-lib-v2.0.89
59
67
  [2.0.88]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.87...be-ts-lib-v2.0.88
60
68
  [2.0.87]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.86...be-ts-lib-v2.0.87
61
69
  [2.0.86]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v2.0.85...be-ts-lib-v2.0.86
package/package.json CHANGED
@@ -2,13 +2,14 @@
2
2
  "name": "@aneuhold/be-ts-lib",
3
3
  "author": "Anton G. Neuhold Jr.",
4
4
  "license": "MIT",
5
- "version": "2.0.88",
5
+ "version": "2.0.89",
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",
9
9
  "scripts": {
10
10
  "build": "rimraf lib && tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts",
11
11
  "watch": "nodemon --ignore lib/ -e ts --exec \"tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts && local-npm publish\"",
12
+ "unpub:local": "local-npm unpublish || true",
12
13
  "lint": "eslint",
13
14
  "test": "vitest run",
14
15
  "preparePkg": "tb pkg prepare",
@@ -21,7 +22,6 @@
21
22
  "upgrade:all": "pnpm up"
22
23
  },
23
24
  "main": "lib/index.js",
24
- "module": "lib/index.js",
25
25
  "types": "lib/index.d.ts",
26
26
  "files": [
27
27
  "lib",