New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@goldstack/utils-sh

Package Overview
Dependencies
Maintainers
1
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldstack/utils-sh - npm Package Compare versions

Comparing version 0.1.34 to 0.1.35

1

dist/utilsSh.d.ts

@@ -24,2 +24,3 @@ import sh from 'shelljs';

}) => Promise<void>;
export declare const tempDir: () => string;
declare const exec: (cmd: string, params?: ExecParams | undefined) => string;

@@ -26,0 +27,0 @@ declare const read: (path: string) => string;

@@ -61,3 +61,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.cd = exports.sh = exports.write = exports.read = exports.pwd = exports.exec = exports.unzip = exports.zip = exports.mkdir = exports.rm = exports.rmSafe = exports.cp = exports.copy = void 0;
exports.cd = exports.sh = exports.write = exports.read = exports.pwd = exports.exec = exports.tempDir = exports.unzip = exports.zip = exports.mkdir = exports.rm = exports.rmSafe = exports.cp = exports.copy = void 0;
var shelljs_1 = __importStar(require("shelljs"));

@@ -249,2 +249,8 @@ exports.sh = shelljs_1.default;

}); };
exports.tempDir = function () {
if (process.env.GOLDSTACK_WORKDIR) {
return process.env.GOLDSTACK_WORKDIR;
}
return './goldstackLocal/';
};
var exec = function (cmd, params) {

@@ -251,0 +257,0 @@ var res = shelljs_1.default.exec(cmd, { silent: params === null || params === void 0 ? void 0 : params.silent });

4

package.json
{
"name": "@goldstack/utils-sh",
"version": "0.1.34",
"version": "0.1.35",
"license": "MIT",

@@ -22,3 +22,3 @@ "author": "Max Rohde",

"dependencies": {
"@goldstack/utils-log": "0.1.35",
"@goldstack/utils-log": "0.1.36",
"archiver": "^5.0.0",

@@ -25,0 +25,0 @@ "extract-zip": "^2.0.1",

Sorry, the diff of this file is not supported yet

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