@stryke/url 0.4.9 → 0.4.11

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,27 @@
2
2
 
3
3
  # Changelog for Stryke - URL
4
4
 
5
+ ## [0.4.11](https://github.com/storm-software/stryke/releases/tag/url%400.4.11) (03/13/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **type-checks** to **v0.5.39**
10
+ - Updated **json** to **v0.14.8**
11
+ - Updated **path** to **v0.27.0**
12
+
13
+ ## [0.4.10](https://github.com/storm-software/stryke/releases/tag/url%400.4.10) (03/11/2026)
14
+
15
+ ### Miscellaneous
16
+
17
+ - **monorepo:** Run prettier on workspace packages' files ([dfe7ab3e](https://github.com/storm-software/stryke/commit/dfe7ab3e))
18
+ - **monorepo:** Format workspace source files ([a97707ea](https://github.com/storm-software/stryke/commit/a97707ea))
19
+
20
+ ### Updated Dependencies
21
+
22
+ - Updated **type-checks** to **v0.5.38**
23
+ - Updated **json** to **v0.14.7**
24
+ - Updated **path** to **v0.26.19**
25
+
5
26
  ## [0.4.9](https://github.com/storm-software/stryke/releases/tag/url%400.4.9) (03/11/2026)
6
27
 
7
28
  ### 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.3.8-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.4.9-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>
package/package.json CHANGED
@@ -1,16 +1,14 @@
1
1
  {
2
2
  "name": "@stryke/url",
3
- "version": "0.4.9",
4
- "type": "module",
3
+ "version": "0.4.11",
4
+ "private": false,
5
5
  "description": "A package containing the `StormURL` class, which is used to parse and manipulate URLs.",
6
6
  "repository": {
7
7
  "type": "github",
8
8
  "url": "https://github.com/storm-software/stryke.git",
9
9
  "directory": "packages/url"
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
  "./helpers": {
@@ -28,9 +26,11 @@
28
26
  },
29
27
  "./*": "./*"
30
28
  },
29
+ "main": "./dist/index.cjs",
30
+ "module": "./dist/index.mjs",
31
31
  "types": "./dist/index.d.cts",
32
32
  "dependencies": { "ufo": "^1.6.3" },
33
33
  "devDependencies": { "@types/node": "^24.12.0", "tsdown": "^0.17.2" },
34
34
  "publishConfig": { "access": "public" },
35
- "gitHead": "766dbebaa8d09f2a341c498b8d92b4e407051efb"
35
+ "gitHead": "a1bde3f52c2327c62bee625670e6699a3c262345"
36
36
  }