@stryke/convert 0.6.52 â 0.6.53
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 +12 -0
- package/README.md +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Stryke - Convert
|
|
4
4
|
|
|
5
|
+
## [0.6.53](https://github.com/storm-software/stryke/releases/tag/convert%400.6.53) (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 **type-checks** to **v0.5.38**
|
|
15
|
+
- Updated **types** to **v0.10.52**
|
|
16
|
+
|
|
5
17
|
## [0.6.52](https://github.com/storm-software/stryke/releases/tag/convert%400.6.52) (03/11/2026)
|
|
6
18
|
|
|
7
19
|
### 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
|
|
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
|
-
[](https://github.com/storm-software/stryke) [](http://commitizen.github.io/cz-cli/)  
|
|
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
|
|
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/convert",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.6.53",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "A utility package that helps convert between different data types.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "github",
|
|
8
8
|
"url": "https://github.com/storm-software/stryke.git",
|
|
9
9
|
"directory": "packages/convert"
|
|
10
10
|
},
|
|
11
|
-
"
|
|
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
|
"./array-buffer-to-string": {
|
|
@@ -67,8 +65,10 @@
|
|
|
67
65
|
},
|
|
68
66
|
"./*": "./*"
|
|
69
67
|
},
|
|
68
|
+
"main": "./dist/index.cjs",
|
|
69
|
+
"module": "./dist/index.mjs",
|
|
70
70
|
"types": "./dist/index.d.cts",
|
|
71
71
|
"devDependencies": { "@types/node": "^24.12.0", "tsdown": "^0.17.2" },
|
|
72
72
|
"publishConfig": { "access": "public" },
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "ddce65fd9bee48318f22b8b7ee85475285dbf507"
|
|
74
74
|
}
|