blamewise 0.1.0 → 0.1.1
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/dist/blamewise.js +5 -2
- package/package.json +1 -1
package/dist/blamewise.js
CHANGED
|
@@ -4444,9 +4444,12 @@ function parseBlamePorcelain(raw) {
|
|
|
4444
4444
|
}
|
|
4445
4445
|
|
|
4446
4446
|
// src/git/run.ts
|
|
4447
|
+
import { execFile } from "node:child_process";
|
|
4448
|
+
import { promisify } from "node:util";
|
|
4449
|
+
var execFileAsync = promisify(execFile);
|
|
4447
4450
|
async function git(...args) {
|
|
4448
|
-
const
|
|
4449
|
-
return
|
|
4451
|
+
const { stdout: stdout2 } = await execFileAsync("git", args);
|
|
4452
|
+
return stdout2;
|
|
4450
4453
|
}
|
|
4451
4454
|
|
|
4452
4455
|
// src/render.ts
|