mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 03:55:25 -04:00
a84c2d36a3
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { resolveBuildInfo } from './lib/resolve-buildinfo.js'
|
|
|
|
const info = resolveBuildInfo()
|
|
process.stdout.write(
|
|
`version: ${info.version}\n` +
|
|
`commit: ${info.commit}\n` +
|
|
`built: ${info.buildDate}\n` +
|
|
`channel: ${info.channel}\n`,
|
|
)
|