mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 13:46:34 +01:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import prominence = require('prominence');
|
|
import git = require('git-last-commit');
|
|
|
|
const getVersion = new Promise<string>(async resolve => {
|
|
const commit = await prominence(git).getLastCommit();
|
|
|
|
const version = commit.shortHash;
|
|
|
|
resolve(version);
|
|
});
|
|
|
|
export default getVersion;
|