@ctx-core/env 17.2.9 → 17.2.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
@@ -1,5 +1,31 @@
1
1
  # @ctx-core/env
2
2
 
3
+ ## 17.2.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - Updated dependencies
9
+ - Updated dependencies
10
+ - Updated dependencies
11
+ - Updated dependencies
12
+ - Updated dependencies
13
+ - Updated dependencies
14
+ - Updated dependencies
15
+ - Updated dependencies
16
+ - Updated dependencies
17
+ - Updated dependencies
18
+ - Updated dependencies
19
+ - @ctx-core/object@25.0.0
20
+ - @ctx-core/error@11.6.5
21
+ - @ctx-core/nanostores@2.2.29
22
+
23
+ ## 17.2.10
24
+
25
+ ### Patch Changes
26
+
27
+ - fix: type alias: missing_env\_\_throw as throw_missing_env
28
+
3
29
  ## 17.2.9
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/env",
3
- "version": "17.2.9",
3
+ "version": "17.2.11",
4
4
  "description": "ctx-core env",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -23,10 +23,10 @@
23
23
  "./package.json": "./package.json"
24
24
  },
25
25
  "dependencies": {
26
- "@ctx-core/error": "^11.6.4",
26
+ "@ctx-core/error": "^11.6.5",
27
27
  "@ctx-core/function": "^21.8.0",
28
- "@ctx-core/nanostores": "^2.2.28",
29
- "@ctx-core/object": "^24.1.8",
28
+ "@ctx-core/nanostores": "^2.2.29",
29
+ "@ctx-core/object": "^25.0.0",
30
30
  "svelte": "^3.55.1"
31
31
  },
32
32
  "devDependencies": {
@@ -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
+ }