@ctx-core/env 16.1.1 → 16.1.2
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 +6 -0
- package/package.json +5 -5
- package/src/CACHE_VERSION__.d.ts +2 -2
- package/src/NODE_ENV__.d.ts +2 -2
- package/src/VERSION__.d.ts +2 -2
- package/src/is_development__.d.ts +2 -2
- package/src/is_production__.d.ts +2 -2
- package/src/is_staging__.d.ts +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/env",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.2",
|
|
4
4
|
"description": "ctx-core env",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@ctx-core/error": "^11.5.0",
|
|
27
|
-
"@ctx-core/function": "^20.8.
|
|
28
|
-
"@ctx-core/nanostores": "^1.4.
|
|
27
|
+
"@ctx-core/function": "^20.8.1",
|
|
28
|
+
"@ctx-core/nanostores": "^1.4.1",
|
|
29
29
|
"@ctx-core/object": "^22.2.1",
|
|
30
|
-
"svelte": "^3.
|
|
30
|
+
"svelte": "^3.49.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"c8": "^7.11.3",
|
|
34
34
|
"check-dts": "^0.6.7",
|
|
35
35
|
"tsm": "^2.2.1",
|
|
36
36
|
"typescript": "next",
|
|
37
|
-
"uvu": "^0.5.
|
|
37
|
+
"uvu": "^0.5.6"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public",
|
package/src/CACHE_VERSION__.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
-
import { B } from '@ctx-core/object'
|
|
1
|
+
import { type WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const CACHE_VERSION__:B<WritableAtom_<false|string>>
|
|
4
4
|
export {
|
|
5
5
|
CACHE_VERSION__ as CACHE_VERSION$_,
|
package/src/NODE_ENV__.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
-
import { B } from '@ctx-core/object'
|
|
1
|
+
import { type WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const NODE_ENV__:B<WritableAtom_<string>>
|
|
4
4
|
export {
|
|
5
5
|
NODE_ENV__ as NODE_ENV$_,
|
package/src/VERSION__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type
|
|
1
|
+
import { type WritableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const VERSION__:B<WritableAtom_<string>>
|
|
4
4
|
export { VERSION__ as VERSION$_ }
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
-
import { B } from '@ctx-core/object'
|
|
1
|
+
import { type ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const is_development__:B<ReadableAtom_<boolean>>
|
|
4
4
|
export { is_development__ as is_development$_ }
|
package/src/is_production__.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
-
import { B } from '@ctx-core/object'
|
|
1
|
+
import { type ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const is_production__:B<is_production__T>
|
|
4
4
|
export declare type is_production__T = ReadableAtom_<boolean>;
|
|
5
5
|
export {
|
package/src/is_staging__.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
-
import { B } from '@ctx-core/object'
|
|
1
|
+
import { type ReadableAtom_ } from '@ctx-core/nanostores'
|
|
2
|
+
import { type B } from '@ctx-core/object'
|
|
3
3
|
export declare const is_staging__:B<ReadableAtom_<boolean>>
|
|
4
4
|
export {
|
|
5
5
|
is_staging__ as is_staging$_,
|