chore(deps): lock file maintenance (#4210)

This commit is contained in:
renovate[bot]
2020-08-26 11:58:50 +03:00
committed by GitHub
parent c99d7affc7
commit 2a4787f1ff
3 changed files with 526 additions and 543 deletions

View File

@ -41,8 +41,10 @@ import { entriesFromFiles, readMediaFile } from '../utils/entries';
const commit = async (git: simpleGit.SimpleGit, commitMessage: string) => {
await git.add('.');
await git.commit(commitMessage, undefined, {
'--no-verify': true,
'--no-gpg-sign': true,
// setting the value to a string passes name=value
// any other value passes just the key
'--no-verify': null,
'--no-gpg-sign': null,
});
};