Lightcord/src/buildInfo.ts

17 lines
391 B
TypeScript
Raw Normal View History

2020-08-11 02:09:41 +02:00
import { getCommitID } from "./common/git"
const pak = require("../package.json")
export const releaseChannel:"stable"|"canary"|"ptb"|"development" = "stable"
export const version = "0.0.307"
export const commit = getCommitID()
export default {
releaseChannel,
version,
commit
}
global["BuildInfo"] = {
releaseChannel,
version: pak.version,
commit
2020-05-16 23:24:51 +02:00
}