@ctx-core/env 15.0.17 → 15.0.19

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,18 @@
1
1
  # @ctx-core/env
2
2
 
3
+ ## 15.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
9
+ ## 15.0.18
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @ctx-core/nanostores@0.5.0
15
+
3
16
  ## 15.0.17
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/env",
3
- "version": "15.0.17",
3
+ "version": "15.0.19",
4
4
  "description": "ctx-core env",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -25,11 +25,11 @@
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/error": "^11.1.23",
29
- "@ctx-core/function": "^20.3.0",
30
- "@ctx-core/nanostores": "^0.4.1",
31
- "@ctx-core/object": "^22.0.12",
32
- "svelte": "^3.46.2"
28
+ "@ctx-core/error": "^11.3.0",
29
+ "@ctx-core/function": "^20.4.0",
30
+ "@ctx-core/nanostores": "^0.5.0",
31
+ "@ctx-core/object": "^22.0.13",
32
+ "svelte": "^3.46.3"
33
33
  },
34
34
  "devDependencies": {
35
35
  "c8": "^7.11.0",
@@ -3,7 +3,7 @@ import { computed$ } from '@ctx-core/nanostores'
3
3
  import { NODE_ENV$_b } from './NODE_ENV$_b.js'
4
4
  const key = 'is_development$'
5
5
  /** @type {import('is_development$_b').is_development$_b} */
6
- export const is_development$_b = be_(key, (ctx)=>
6
+ export const is_development$_b = be_(key, ctx=>
7
7
  computed$(NODE_ENV$_b(ctx),
8
8
  (NODE_ENV)=>
9
9
  NODE_ENV === 'dev' || NODE_ENV === 'development.js'
@@ -3,7 +3,7 @@ import { computed$ } from '@ctx-core/nanostores'
3
3
  import { NODE_ENV$_b } from './NODE_ENV$_b.js'
4
4
  const key = 'is_production$'
5
5
  /** @type {import('is_production$_b').is_production$_b} */
6
- export const is_production$_b = be_(key, (ctx)=>
6
+ export const is_production$_b = be_(key, ctx=>
7
7
  computed$(NODE_ENV$_b(ctx),
8
8
  (NODE_ENV)=>
9
9
  NODE_ENV === 'prod' || NODE_ENV === 'production.js'
@@ -4,7 +4,7 @@ import { computed$ } from '@ctx-core/nanostores'
4
4
  import { NODE_ENV$_b } from './NODE_ENV$_b.js'
5
5
  const key = 'is_staging$'
6
6
  /** @type {import('is_staging$_b').is_staging$_b} */
7
- export const is_staging$_b = be_(key, (ctx)=>
7
+ export const is_staging$_b = be_(key, ctx=>
8
8
  computed$(NODE_ENV$_b(ctx),
9
9
  eql_([
10
10
  'staging'
package/COMMIT_EDITMSG DELETED
@@ -1,2 +0,0 @@
1
-
2
-