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

flex-plugins-utils-env

Package Overview
Dependencies
Maintainers
7
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-plugins-utils-env - npm Package Compare versions

Comparing version 0.18.0 to 0.19.0

4

dist/lib/env.d.ts

@@ -8,3 +8,3 @@ export declare type Realm = 'dev' | 'stage';

isQuiet: () => boolean;
setQuiet: () => void;
setQuiet: (isQuiet?: boolean) => void;
isDebug: () => boolean;

@@ -15,3 +15,5 @@ isTrace: () => boolean;

isCI: () => boolean;
isCLI: () => boolean;
setCLI: () => void;
};
export default _default;

@@ -18,5 +18,10 @@ "use strict";

var isQuiet = function () { return exports.isNode() && process.env.QUIET === 'true'; };
var setQuiet = function () {
process.env.QUIET = 'true';
var setQuiet = function (isQuiet) {
if (isQuiet === void 0) { isQuiet = true; }
process.env.QUIET = String(isQuiet);
};
var isCLI = function () { return process.env.FLEX_PLUGINS_CLI === 'true'; };
var setCLI = function () {
process.env.FLEX_PLUGINS_CLI = 'true';
};
var isTrace = function () {

@@ -80,3 +85,5 @@ if (exports.isNode()) {

isCI: isCI,
isCLI: isCLI,
setCLI: setCLI,
};
//# sourceMappingURL=env.js.map
{
"name": "flex-plugins-utils-env",
"version": "0.18.0",
"version": "0.19.0",
"description": "Flex Plugins Environments",

@@ -46,3 +46,3 @@ "keywords": [

},
"gitHead": "5d2b52d8f9694c42aca271dde8400de480adf3e7"
"gitHead": "c30bba85fc858f3833333201ea50a74a4b584702"
}

Sorry, the diff of this file is not supported yet

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