@stryke/helpers 0.10.20 → 0.10.22

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 +28 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  # Changelog for Stryke - Helpers
4
4
 
5
+ ## [0.10.21](https://github.com/storm-software/stryke/releases/tag/helpers%400.10.21) (05/30/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Remove remaining `jest` configuration ([1fd3d7d2](https://github.com/storm-software/stryke/commit/1fd3d7d2))
10
+
11
+ ### Bug Fixes
12
+
13
+ - **monorepo:** Resolve issue with `.test.ts` exports in `package.json` file ([31d85e19](https://github.com/storm-software/stryke/commit/31d85e19))
14
+
15
+ ### Updated Dependencies
16
+
17
+ - Updated **convert** to **v0.7.12**
18
+ - Updated **type-checks** to **v0.6.14**
19
+ - Updated **types** to **v0.12.9**
20
+
21
+ ## [0.10.20](https://github.com/storm-software/stryke/releases/tag/helpers%400.10.20) (05/30/2026)
22
+
23
+ ### Miscellaneous
24
+
25
+ - **monorepo:** Update config file specified in `tsconfig.json` exludes ([359c616a](https://github.com/storm-software/stryke/commit/359c616a))
26
+
27
+ ### Updated Dependencies
28
+
29
+ - Updated **convert** to **v0.7.11**
30
+ - Updated **type-checks** to **v0.6.13**
31
+ - Updated **types** to **v0.12.8**
32
+
5
33
  ## [0.10.19](https://github.com/storm-software/stryke/releases/tag/helpers%400.10.19) (05/27/2026)
6
34
 
7
35
  ### Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/helpers",
3
- "version": "0.10.20",
3
+ "version": "0.10.22",
4
4
  "private": false,
5
5
  "description": "A package containing miscellaneous helper functions that are used across many different Storm Software projects.",
6
6
  "repository": {
@@ -187,17 +187,17 @@
187
187
  "import": "./dist/union.test.mjs",
188
188
  "require": "./dist/union.test.cjs"
189
189
  },
190
- "./*": "./*"
190
+ "./package.json": "./package.json"
191
191
  },
192
192
  "main": "./dist/index.cjs",
193
193
  "module": "./dist/index.mjs",
194
194
  "types": "./dist/index.d.cts",
195
195
  "dependencies": {
196
- "@stryke/convert": "^0.7.11",
197
- "@stryke/type-checks": "^0.6.13",
198
- "@stryke/types": "^0.12.8"
196
+ "@stryke/convert": "^0.7.13",
197
+ "@stryke/type-checks": "^0.6.15",
198
+ "@stryke/types": "^0.12.10"
199
199
  },
200
200
  "devDependencies": { "tsdown": "^0.21.10" },
201
201
  "publishConfig": { "access": "public" },
202
- "gitHead": "004d35078864920425b41d1d90b45ef504f5a092"
202
+ "gitHead": "ece0282e088042eeb03cb46bee01751c598fcf4a"
203
203
  }