mirror of
https://github.com/saltbo/zpan.git
synced 2026-09-01 15:49:00 +08:00
13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
import { execSync } from 'node:child_process'
|
|
|
|
export function resolveAppVersion() {
|
|
return execSync('git describe --tags --always --dirty', {
|
|
encoding: 'utf8',
|
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
}).trim()
|
|
}
|
|
|
|
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
process.stdout.write(resolveAppVersion())
|
|
}
|