@stryke/unique-id 0.3.33 → 0.3.35
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 +16 -0
- package/README.md +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Changelog for Stryke - Unique ID
|
|
4
|
+
|
|
5
|
+
## [0.3.34](https://github.com/storm-software/stryke/releases/tag/unique-id%400.3.34) (12/18/2025)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **hash** to **v0.12.29**
|
|
10
|
+
|
|
1
11
|

|
|
2
12
|
|
|
3
13
|
# Changelog for Stryke - Unique ID
|
|
4
14
|
|
|
15
|
+
## [0.3.33](https://github.com/storm-software/stryke/releases/tag/unique-id%400.3.33) (12/17/2025)
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated **hash** to **v0.12.28**
|
|
20
|
+
|
|
5
21
|
## [0.3.32](https://github.com/storm-software/stryke/releases/tag/unique-id%400.3.32) (12/17/2025)
|
|
6
22
|
|
|
7
23
|
### Updated Dependencies
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
<div align="center">
|
|
7
7
|
<picture>
|
|
8
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark
|
|
9
|
-
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light
|
|
10
|
-
<img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark
|
|
8
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark.gif">
|
|
9
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light.gif">
|
|
10
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark.gif" width="100%" alt="Storm Software" />
|
|
11
11
|
</picture>
|
|
12
12
|
</div>
|
|
13
13
|
<br />
|
|
@@ -256,9 +256,9 @@ specification. Contributions of any kind welcome!
|
|
|
256
256
|
|
|
257
257
|
<div align="center">
|
|
258
258
|
<picture>
|
|
259
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark
|
|
260
|
-
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light
|
|
261
|
-
<img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark
|
|
259
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp">
|
|
260
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light.webp">
|
|
261
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp" width="100%" alt="Storm Software" />
|
|
262
262
|
</picture>
|
|
263
263
|
</div>
|
|
264
264
|
<br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/unique-id",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.35",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing various helper functions to generate unique identifier strings",
|
|
6
6
|
"repository": {
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"types": "./dist/index.d.cts",
|
|
33
33
|
"devDependencies": { "tsdown": "^0.17.2" },
|
|
34
34
|
"publishConfig": { "access": "public" },
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "ed86f49867133045cf1eb4626ca513043221d0af"
|
|
36
36
|
}
|