@ctx-core/env
Advanced tools
Comparing version 7.0.2 to 8.0.0
{ | ||
"name": "@ctx-core/env", | ||
"version": "7.0.2", | ||
"version": "8.0.0", | ||
"description": "ctx-core env", | ||
@@ -34,3 +34,3 @@ "main": "env.js", | ||
}, | ||
"gitHead": "75e876bac72c5e7ceef4eba4dac44d783c6c3fe6" | ||
"gitHead": "0a691751c3babd4cdeda5f21b5e9838e55766c3f" | ||
} |
@@ -9,3 +9,3 @@ import { writable, derived } from 'svelte/store' | ||
|| Math.random()) | ||
export const __is__prod = | ||
export const __is__production = | ||
derived(__NODE_ENV, | ||
@@ -17,3 +17,3 @@ NODE_ENV => | ||
derived(__NODE_ENV, NODE_ENV => NODE_ENV === 'staging') | ||
export const __is__dev = | ||
export const __is__development = | ||
derived(__NODE_ENV, | ||
@@ -20,0 +20,0 @@ NODE_ENV => |
2317