tt-help-cli-ycl 1.3.76 → 1.3.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tt-help-cli-ycl",
3
- "version": "1.3.76",
3
+ "version": "1.3.77",
4
4
  "description": "TikTok user & video data scraper - extract ttSeller, verified, locationCreated from HTML source",
5
5
  "type": "module",
6
6
  "bin": {
@@ -108,6 +108,10 @@ function killEdgeProcesses(targetDir) {
108
108
  const escapedDir = targetDir.replace(/'/g, "''");
109
109
  const ps1Content =
110
110
  `$procs = Get-CimInstance Win32_Process -Filter "Name='msedge.exe'" 2>$null; ` +
111
+ `Write-Output "TOTAL_MSEDGE_PROCS: $($procs.Count)"; ` +
112
+ `foreach ($p in $procs) { ` +
113
+ ` Write-Output "PROC_PID=$($p.ProcessId) CMD=$($p.CommandLine)"; ` +
114
+ `}; ` +
111
115
  `$count = 0; ` +
112
116
  `$pids = @(); ` +
113
117
  `foreach ($p in $procs) { ` +