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 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 result = await Bun.$`git ${args}`.quiet();
4449
- return result.text();
4451
+ const { stdout: stdout2 } = await execFileAsync("git", args);
4452
+ return stdout2;
4450
4453
  }
4451
4454
 
4452
4455
  // src/render.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "blamewise",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "module": "src/cli.ts",
6
6
  "bin": {
7
7
  "blamewise": "dist/blamewise.js"