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
6
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.17.1 to 0.17.2

2

dist/lib/env.d.ts

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

isQuiet: () => boolean;
setQuiet: () => void;
isDebug: () => boolean;
isTrace: () => boolean;
getRealm: () => string;
setRealm: (realm: Realm) => void;
isCI: () => boolean;
};
export default _default;

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

var isQuiet = function () { return exports.isNode() && process.env.QUIET === 'true'; };
var setQuiet = function () {
process.env.QUIET = 'true';
};
var isTrace = function () {

@@ -40,2 +43,5 @@ if (exports.isNode()) {

};
var setRealm = function (realm) {
process.env.REALM = realm;
};
var getRealm = function () {

@@ -69,7 +75,9 @@ if (exports.isNode()) {

isQuiet: isQuiet,
setQuiet: setQuiet,
isDebug: isDebug,
isTrace: isTrace,
getRealm: getRealm,
setRealm: setRealm,
isCI: isCI,
};
//# sourceMappingURL=env.js.map

4

package.json
{
"name": "flex-plugins-utils-env",
"version": "0.17.1",
"version": "0.17.2",
"description": "Flex Plugins Environments",

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

},
"gitHead": "14295cc11cd45b5dae3bb2f9da334932caa67304"
"gitHead": "6ade2aa462a1a3084bd087ba8e74fdf1cda52a36"
}

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