@stryke/type-checks 0.5.36 → 0.5.38

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 CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  # Changelog for Stryke - Type Checks
4
4
 
5
+ ## [0.5.38](https://github.com/storm-software/stryke/releases/tag/type-checks%400.5.38) (03/11/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Run prettier on workspace packages' files ([dfe7ab3e](https://github.com/storm-software/stryke/commit/dfe7ab3e))
10
+ - **monorepo:** Format workspace source files ([a97707ea](https://github.com/storm-software/stryke/commit/a97707ea))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **types** to **v0.10.52**
15
+
16
+ ## [0.5.37](https://github.com/storm-software/stryke/releases/tag/type-checks%400.5.37) (03/11/2026)
17
+
18
+ ### Updated Dependencies
19
+
20
+ - Updated **types** to **v0.10.51**
21
+
5
22
  ## [0.5.36](https://github.com/storm-software/stryke/releases/tag/type-checks%400.5.36) (03/08/2026)
6
23
 
7
24
  ### Updated Dependencies
package/README.md CHANGED
@@ -22,16 +22,16 @@
22
22
  </div>
23
23
 
24
24
  <br />
25
- This package is part of Storm Software's **đŸ’Ĩ Stryke** monorepo. Stryke packages TypeScript utility packages with shared functionality common to many Storm Software applications.
25
+ This package is part of Storm Software's **đŸŒŠī¸ Stryke** monorepo. Stryke packages TypeScript utility packages with shared functionality common to many Storm Software applications.
26
26
 
27
27
  <br />
28
28
 
29
29
  <h3 align="center">đŸ’ģ Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
30
30
 
31
- [![Version](https://img.shields.io/badge/version-0.5.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/stryke/release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
+ [![Version](https://img.shields.io/badge/version-0.5.37-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://github.com/storm-software/stryke)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/stryke/release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
32
32
 
33
33
  > [!IMPORTANT] Important
34
- > This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be available through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
34
+ > This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be available through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
35
35
 
36
36
  <div align="center">
37
37
  <a href="https://github.com/storm-software/stryke" target="_blank"><b>Be sure to ⭐ this repository on GitHub so you can keep up to date on any daily progress!</b></a>
@@ -51,6 +51,7 @@ A package containing various type-check functions to validate TypeScript values
51
51
 
52
52
  <!-- START doctoc -->
53
53
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
54
+
54
55
  ## Table of Contents
55
56
 
56
57
  - [Installing](#installing)
package/package.json CHANGED
@@ -1,16 +1,14 @@
1
1
  {
2
2
  "name": "@stryke/type-checks",
3
- "version": "0.5.36",
4
- "type": "module",
3
+ "version": "0.5.38",
4
+ "private": false,
5
5
  "description": "A package containing various type-check functions to validate TypeScript values.",
6
6
  "repository": {
7
7
  "type": "github",
8
8
  "url": "https://github.com/storm-software/stryke.git",
9
9
  "directory": "packages/type-checks"
10
10
  },
11
- "private": false,
12
- "main": "./dist/index.cjs",
13
- "module": "./dist/index.mjs",
11
+ "type": "module",
14
12
  "exports": {
15
13
  ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
16
14
  "./get-object-tag": {
@@ -191,8 +189,10 @@
191
189
  },
192
190
  "./*": "./*"
193
191
  },
192
+ "main": "./dist/index.cjs",
193
+ "module": "./dist/index.mjs",
194
194
  "types": "./dist/index.d.cts",
195
195
  "devDependencies": { "tsdown": "^0.17.2" },
196
196
  "publishConfig": { "access": "public" },
197
- "gitHead": "875e633229d2ed1637cc483474a977c001ab46cc"
197
+ "gitHead": "ddce65fd9bee48318f22b8b7ee85475285dbf507"
198
198
  }