@ctx-core/env 17.2.8 → 17.2.10

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
@@ -1,5 +1,17 @@
1
1
  # @ctx-core/env
2
2
 
3
+ ## 17.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: type alias: missing_env\_\_throw as throw_missing_env
8
+
9
+ ## 17.2.9
10
+
11
+ ### Patch Changes
12
+
13
+ - @ctx-core/error: ^11.6.3 -> ^11.6.4
14
+
3
15
  ## 17.2.8
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/env",
3
- "version": "17.2.8",
3
+ "version": "17.2.10",
4
4
  "description": "ctx-core env",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -23,7 +23,7 @@
23
23
  "./package.json": "./package.json"
24
24
  },
25
25
  "dependencies": {
26
- "@ctx-core/error": "^11.6.3",
26
+ "@ctx-core/error": "^11.6.4",
27
27
  "@ctx-core/function": "^21.8.0",
28
28
  "@ctx-core/nanostores": "^2.2.28",
29
29
  "@ctx-core/object": "^24.1.8",
@@ -2,4 +2,7 @@
2
2
  * Throws an error for a missing env variable
3
3
  */
4
4
  export declare function missing_env__throw(env_name:string):void
5
- export { missing_env__throw as throw__missing__env }
5
+ export {
6
+ missing_env__throw as throw_missing_env,
7
+ missing_env__throw as throw__missing__env,
8
+ }