chore(deps): bump simple-git from 2.48.0 to 3.1.0

This commit is contained in:
lowlighter
2022-01-25 19:58:13 -05:00
parent 1f7090eefc
commit fd3cffac9f
3 changed files with 17 additions and 17 deletions

View File

@@ -3,7 +3,7 @@ const path = require("path")
const git = require("simple-git")(path.join(__dirname, ".."))
//Edited files list
const diff = async () => (await git.diff("origin/master...", ["--name-status"])).split("\n").map(x => x.trim()).filter(x => /^M\s+/.test(x)).map(x => x.replace(/^M\s+/, ""))
const diff = async () => (await git.diff(["origin/master...", "--name-status"])).split("\n").map(x => x.trim()).filter(x => /^M\s+/.test(x)).map(x => x.replace(/^M\s+/, ""))
//Files editions
describe("Check files editions (checkout your files if needed)", () => {