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

@dmatter/pipe-env

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dmatter/pipe-env - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

dist/services/isWindows.d.ts

4

dist/bin/pipeEnv.js

@@ -14,2 +14,3 @@ #!/usr/bin/env node

const convertCommand_1 = require("../services/convertCommand");
const isWindows_1 = require("../services/isWindows");
const parseCommand_1 = require("../services/parseCommand");

@@ -31,3 +32,4 @@ ['.env'].forEach(dotenvFile => {

stdio: 'inherit',
}).on('error', console.error);
shell: (0, isWindows_1.isWindows)(),
});
process.on('SIGTERM', () => proc.kill('SIGTERM'));

@@ -34,0 +36,0 @@ process.on('SIGINT', () => proc.kill('SIGINT'));

@@ -8,5 +8,5 @@ "use strict";

const path_1 = __importDefault(require("path"));
const isWindows = () => process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE || '');
const isWindows_1 = require("./isWindows");
function convertCommand(command, normalize = false) {
if (!isWindows())
if (!(0, isWindows_1.isWindows)())
return command;

@@ -13,0 +13,0 @@ const envUnixRegex = /\$(\w+)|\${(\w+)}/g; // $my_var or ${my_var}

{
"name": "@dmatter/pipe-env",
"version": "0.0.6",
"version": "0.0.7",
"scripts": {

@@ -5,0 +5,0 @@ "start": "tsc -w",

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