Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ctx-core/env

Package Overview
Dependencies
Maintainers
1
Versions
970
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ctx-core/env - npm Package Compare versions

Comparing version 6.0.2 to 6.0.3

4

package.json
{
"name": "@ctx-core/env",
"version": "6.0.2",
"version": "6.0.3",
"description": "ctx-core env",

@@ -30,3 +30,3 @@ "main": "env.js",

},
"gitHead": "d42b7cccfdd69d0ddc4a3da0fc54c783eb4ac0c3"
"gitHead": "799acfacfd6a68e55c062afa8ec8389a3ee77c19"
}

@@ -5,4 +5,7 @@ import { writable, derive } from 'svelte/store'

export const __VERSION = writable(process.env.HEROKU_SLUG_COMMIT || Math.random())
export const __is__production = derive(__NODE_ENV, NODE_ENV => NODE_ENV === 'production')
export const __is__staging = derive(__NODE_ENV, NODE_ENV => NODE_ENV === 'staging')
export const __is__development = derive(__NODE_ENV, NODE_ENV => NODE_ENV === 'development')
export const __is__production =
derive(__NODE_ENV, ([NODE_ENV]) => NODE_ENV === 'production')
export const __is__staging =
derive(__NODE_ENV, ([NODE_ENV]) => NODE_ENV === 'staging')
export const __is__development =
derive(__NODE_ENV, ([NODE_ENV]) => NODE_ENV === 'development')
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc