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

@essex/build-step-clean

Package Overview
Dependencies
Maintainers
3
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@essex/build-step-clean - npm Package Compare versions

Comparing version 8.0.0-alpha.6 to 8.0.0-alpha.7

4

lib/index.js

@@ -11,7 +11,5 @@ "use strict";

async function clean(files) {
const promises = files
.filter(f => !!f)
.map(f => rm_1.rm(f));
const promises = files.filter(f => !!f).map(f => rm_1.rm(f));
await Promise.all(promises);
}
exports.clean = clean;
{
"name": "@essex/build-step-clean",
"version": "8.0.0-alpha.6",
"version": "8.0.0-alpha.7",
"main": "lib/index.js",

@@ -18,3 +18,3 @@ "typings": "lib/index.d.ts",

},
"gitHead": "81d396db71dee35ca7b8e22224cd511d484b14f7"
"gitHead": "2d52185ef6b8a83e93cede1f06b1cd088c1e3c2b"
}

@@ -9,6 +9,4 @@ /*!

export async function clean(files: string[]): Promise<void> {
const promises: Array<Promise<void>> = files
.filter(f => !!f)
.map(f => rm(f!))
const promises: Array<Promise<void>> = files.filter(f => !!f).map(f => rm(f!))
await Promise.all(promises)
}
}
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