@stryke/env 0.20.86 → 0.20.87

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,15 @@
2
2
 
3
3
  # Changelog for Stryke - Env
4
4
 
5
+ ## [0.20.87](https://github.com/storm-software/stryke/releases/tag/env%400.20.87) (05/01/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **string-format** to **v0.17.13**
10
+ - Updated **convert** to **v0.7.3**
11
+ - Updated **path** to **v0.28.2**
12
+ - Updated **fs** to **v0.33.70**
13
+
5
14
  ## [0.20.86](https://github.com/storm-software/stryke/releases/tag/env%400.20.86) (04/26/2026)
6
15
 
7
16
  ### Miscellaneous
@@ -1 +1 @@
1
- {"version":3,"file":"to-array.mjs","names":[],"sources":["../../../../convert/src/to-array.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Stryke\n\n This code was released as part of the Stryke project. Stryke\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/stryke.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/stryke\n Documentation: https://docs.stormsoftware.com/projects/stryke\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { Arrayable } from \"@stryke/types/array\";\nimport type { Nullable } from \"@stryke/types/utilities\";\n\n/**\n * Convert `Arrayable<T>` to `Array<T>`\n *\n * @param array - The `Arrayable<T>` to convert\n * @returns An `Array<T>` containing the elements of the input\n */\nexport function toArray<T>(array?: Nullable<Arrayable<T>>): Array<T> {\n array = array ?? [];\n return Array.isArray(array) ? array : [array];\n}\n"],"mappings":";;;;;;;AA2BA,SAAgB,QAAW,OAA0C;AACnE,SAAQ,SAAS,EAAE;AACnB,QAAO,MAAM,QAAQ,MAAM,GAAG,QAAQ,CAAC,MAAM"}
1
+ {"version":3,"file":"to-array.mjs","names":[],"sources":["../../../../convert/src/to-array.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Stryke\n\n This code was released as part of the Stryke project. Stryke\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/stryke.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/stryke\n Documentation: https://docs.stormsoftware.com/projects/stryke\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { Arrayable } from \"@stryke/types/array\";\nimport type { Nullable } from \"@stryke/types/base\";\n\n/**\n * Convert `Arrayable<T>` to `Array<T>`\n *\n * @param array - The `Arrayable<T>` to convert\n * @returns An `Array<T>` containing the elements of the input\n */\nexport function toArray<T>(array?: Nullable<Arrayable<T>>): Array<T> {\n array = array ?? [];\n return Array.isArray(array) ? array : [array];\n}\n"],"mappings":";;;;;;;AA2BA,SAAgB,QAAW,OAA0C;AACnE,SAAQ,SAAS,EAAE;AACnB,QAAO,MAAM,QAAQ,MAAM,GAAG,QAAQ,CAAC,MAAM"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/env",
3
- "version": "0.20.86",
3
+ "version": "0.20.87",
4
4
  "private": false,
5
5
  "description": "A package containing utility functions to handle environment specific processes",
6
6
  "repository": {
@@ -43,13 +43,13 @@
43
43
  "types": "./dist/index.d.cts",
44
44
  "dependencies": {
45
45
  "@dotenvx/dotenvx": "1.35.0",
46
- "@stryke/convert": "^0.7.2",
47
- "@stryke/fs": "^0.33.69",
48
- "@stryke/path": "^0.28.1",
49
- "@stryke/string-format": "^0.17.12",
46
+ "@stryke/convert": "^0.7.3",
47
+ "@stryke/fs": "^0.33.70",
48
+ "@stryke/path": "^0.28.2",
49
+ "@stryke/string-format": "^0.17.13",
50
50
  "defu": "^6.1.7"
51
51
  },
52
52
  "devDependencies": { "@types/node": "^24.12.2", "tsdown": "^0.17.2" },
53
53
  "publishConfig": { "access": "public" },
54
- "gitHead": "d934face11e0511f16942786bd609d4cec659ec6"
54
+ "gitHead": "1483b450abaad8ecaa28225e7af6d412b694edd9"
55
55
  }