You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

clean-my-mac-cli

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clean-my-mac-cli - npm Package Compare versions

Comparing version
1.1.0
to
1.1.1
+4
-7
dist/index.js

@@ -1235,14 +1235,11 @@ #!/usr/bin/env node

const results = [];
const executing = [];
const executing = /* @__PURE__ */ new Set();
for (const task of tasks) {
const p = task().then((result) => {
results.push(result);
executing.delete(p);
});
executing.push(p);
if (executing.length >= concurrency) {
executing.add(p);
if (executing.size >= concurrency) {
await Promise.race(executing);
executing.splice(
executing.findIndex((e) => e === p),
1
);
}

@@ -1249,0 +1246,0 @@ }

{
"name": "clean-my-mac-cli",
"version": "1.1.0",
"version": "1.1.1",
"description": "Open source CLI tool to clean your Mac - similar to CleanMyMac",

@@ -5,0 +5,0 @@ "type": "module",