thaldrin/src/utils/gitVersion.ts

3 lines
123 B
TypeScript
Raw Normal View History

2021-10-31 21:41:49 +00:00
import { execSync } from 'child_process';
export default execSync('git rev-parse HEAD', { encoding: 'utf8' }).slice(0, 8);