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

my_wins

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

my_wins - npm Package Compare versions

Comparing version

to
1.2.0

10

lib/index.js

@@ -69,2 +69,3 @@ const { spawn, execFile, exec } = require("child_process");

}
delay:0,
}

@@ -135,3 +136,3 @@

const w = settings.wins[k];
const {name, title, app, cmd, no_run} = w;
const {name, title, app, cmd, no_run, delay} = w;

@@ -150,4 +151,9 @@ let win_info_candidates = wins.filter(c => c.title.includes(title));

win.keyboard.printText(cmd);
if(!no_run)
await awaitDelay(200);
if(!no_run) {
if(delay) {
await awaitDelay(delay);
}
win.keyboard.sendKey(13);
}
await awaitDelay(300);

@@ -154,0 +160,0 @@ }

2

package.json
{
"name": "my_wins",
"version": "1.1.7",
"version": "1.2.0",
"description": "Automates starting and laying out your console windows for tsc, babel, tests, verdaccio, etc...",

@@ -5,0 +5,0 @@ "keywords": ["automation","cmd","keysender","windows","autostart","autorun"],