wikipedia-game-solver/packages/constants/version.ts

10 lines
254 B
TypeScript
Raw Normal View History

2024-07-24 12:35:33 +02:00
import packageJSON from "./package.json"
export const VERSION =
process.env["NODE_ENV"] === "development"
? "0.0.0-development"
: packageJSON.version
2024-07-24 22:04:33 +02:00
export const GIT_REPO_LINK =
2024-07-24 22:04:33 +02:00
"https://git.theoludwig.fr/theoludwig/wikipedia-game-solver"