blob: 1826f00944e88cc975eced350fd2fabd2b24e682 [file] [log] [blame]
export const version = (() => {
try {
/* eslint-disable-next-line n/no-restricted-require */
return require('child_process')
.execSync('git describe --always --abbrev=0 --dirty')
.toString()
.trim();
} catch {
// Fail gracefully if git is not available.
return 'unknown';
}
})();