@aneuhold/core-ts-lib 2.4.5 → 2.4.7
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 +14 -0
- package/package.json +7 -4
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.4.7] (2026-08-13)
|
|
9
|
+
|
|
10
|
+
### 🏗️ Changed
|
|
11
|
+
|
|
12
|
+
- No direct code changes; version bump for compatibility.
|
|
13
|
+
|
|
14
|
+
## 🔖 [2.4.6] (2026-06-19)
|
|
15
|
+
|
|
16
|
+
### 🏗️ Changed
|
|
17
|
+
|
|
18
|
+
- Moved the Vitest config to a shared base (`vitest.shared.ts`) merged in with `mergeConfig`, raising the per-test timeout to 20s.
|
|
19
|
+
|
|
8
20
|
## 🔖 [2.4.5] (2026-06-12)
|
|
9
21
|
|
|
10
22
|
### 🏗️ Changed
|
|
@@ -245,6 +257,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
245
257
|
- Updated workflow permissions to allow repository write access
|
|
246
258
|
|
|
247
259
|
<!-- Link References -->
|
|
260
|
+
[2.4.7]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.6...core-ts-lib-v2.4.7
|
|
261
|
+
[2.4.6]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.5...core-ts-lib-v2.4.6
|
|
248
262
|
[2.4.5]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.4...core-ts-lib-v2.4.5
|
|
249
263
|
[2.4.4]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.3...core-ts-lib-v2.4.4
|
|
250
264
|
[2.4.3]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.4.2...core-ts-lib-v2.4.3
|
package/package.json
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"name": "@aneuhold/core-ts-lib",
|
|
3
3
|
"author": "Anton G. Neuhold Jr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.4.
|
|
5
|
+
"version": "2.4.7",
|
|
6
6
|
"description": "A core library for all of my TypeScript projects",
|
|
7
7
|
"packageManager": "pnpm@10.25.0",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "rimraf lib && pnpm build:withoutClean",
|
|
11
|
-
"build:withoutClean": "tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts
|
|
11
|
+
"build:withoutClean": "tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts",
|
|
12
12
|
"propagateVersion": "tsx ../../scripts/propagateVersion.ts",
|
|
13
|
-
"watch": "nodemon --ignore lib/ -e ts --exec \"pnpm build:withoutClean\"",
|
|
13
|
+
"watch": "nodemon --ignore lib/ -e ts --exec \"pnpm build:withoutClean && local-npm publish\"",
|
|
14
14
|
"lint": "eslint",
|
|
15
15
|
"check": "tsc --noEmit",
|
|
16
16
|
"test": "vitest run",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"npm:publish": "npm publish --access public",
|
|
24
24
|
"upgrade:all": "pnpm update '!@aneuhold/*' --latest"
|
|
25
25
|
},
|
|
26
|
+
"scriptsComments": {
|
|
27
|
+
"watch": "`local-npm` needs to be installed globally for the command to work. This is so we don't have an infinite loop in the build."
|
|
28
|
+
},
|
|
26
29
|
"main": "lib/browser.js",
|
|
27
30
|
"types": "lib/browser.d.ts",
|
|
28
31
|
"files": [
|
|
@@ -78,4 +81,4 @@
|
|
|
78
81
|
"typescript": "~6.0.3",
|
|
79
82
|
"vitest": "^4.0.15"
|
|
80
83
|
}
|
|
81
|
-
}
|
|
84
|
+
}
|