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

clean-release

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clean-release - npm Package Compare versions

Comparing version 2.5.1-alpha.0 to 2.5.1-alpha.1

12

dist/index.js

@@ -42,2 +42,3 @@ "use strict";

}
const subProcesses = [];
function exec(command, options) {

@@ -56,2 +57,3 @@ return new Promise((resolve, reject) => {

subProcess.stderr.pipe(process.stderr);
subProcesses.push(subProcess);
});

@@ -162,3 +164,8 @@ }

}
executeCommandLine().catch(error => {
executeCommandLine().then(() => {
for (const subProcess of subProcesses) {
subProcess.kill('SIGINT');
}
process.exit();
}, error => {
if (error instanceof Error) {

@@ -170,2 +177,5 @@ console.log(error.message);

}
for (const subProcess of subProcesses) {
subProcess.kill('SIGINT');
}
process.exit(1);

@@ -172,0 +182,0 @@ });

2

package.json
{
"name": "clean-release",
"version": "2.5.1-alpha.0",
"version": "2.5.1-alpha.1",
"description": "A CLI tool to copy files to be released into a tmp clean directory for npm publishing, electronjs packaging, docker image creation, or deployment",

@@ -5,0 +5,0 @@ "main": "index.js",

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