remove sentry

This commit is contained in:
Peter Maquiran
2022-12-23 12:23:16 +01:00
parent d8ac3d3b3d
commit b83fff6fbd
72 changed files with 2059 additions and 5260 deletions
+5 -1
View File
@@ -11,6 +11,8 @@ const commitTime = childProcess.execSync("git log -1 --pretty=format:'%cd'").toS
const commitMsg = childProcess.execSync("git log -1 --pretty=%B").toString().trim();
const totalCommitCount = childProcess.execSync("git rev-list --count HEAD").toString().trim();
const change = childProcess.execSync(`git diff -- ":!/version/git-version.ts" ":!/version/git-version.json" `,{cwd: rootDir }).toString().trim();
const changeStatus = childProcess.execSync("git status").toString().trim();
const changeAuthor = childProcess.execSync("whoami").toString().trim();
const versionInfo = {
shortSHA: shortSHA,
@@ -20,7 +22,9 @@ const versionInfo = {
lastCommitTime: commitTime,
lastCommitMessage: commitMsg,
lastCommitNumber: totalCommitCount,
change
change,
changeStatus,
changeAuthor,
}
const versionInfoJson = JSON.stringify(versionInfo, null, 2);
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long