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

@goldstack/utils-sh

Package Overview
Dependencies
Maintainers
0
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.5.19 to 0.5.20

13

dist/src/utilsSh.js

@@ -38,5 +38,12 @@ "use strict";

try {
await (0, fs_extra_1.copy)(file, destCorrected, {
overwrite: true,
recursive: true,
await new Promise((success, err) => {
(0, fs_extra_1.copy)(file, destCorrected, {
overwrite: true,
}, (ex) => {
if (ex) {
err(ex);
return;
}
success();
});
});

@@ -43,0 +50,0 @@ (0, utils_log_1.debug)(`Copied ${file} to ${destCorrected}`);

{
"name": "@goldstack/utils-sh",
"version": "0.5.19",
"version": "0.5.20",
"description": "Utilities for working with files and folders in a bash like manner",

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

"dependencies": {
"@goldstack/utils-log": "0.3.17",
"@goldstack/utils-log": "0.3.18",
"archiver": "^5.3.1",

@@ -49,14 +49,14 @@ "extract-zip": "^2.0.1",

"devDependencies": {
"@goldstack/utils-git": "0.2.11",
"@swc/core": "^1.9.3",
"@goldstack/utils-git": "0.2.12",
"@swc/core": "^1.10.1",
"@swc/jest": "^0.2.37",
"@types/archiver": "^3.1.0",
"@types/command-exists": "^1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.3",
"@types/archiver": "^6.0.3",
"@types/command-exists": "^1.2.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/rimraf": "^3.0.0",
"@types/which": "^2",
"jest": "^29.3.1",
"@types/node": "^22.10.2",
"@types/rimraf": "^4.0.5",
"@types/which": "^3.0.4",
"jest": "^29.7.0",
"rimraf": "^3.0.2",

@@ -63,0 +63,0 @@ "typescript": "^5.7.2"

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