1
0
Fork 0
salty-dog/src/version.ts

25 lines
521 B
TypeScript
Raw Normal View History

2019-06-15 20:20:04 +00:00
// webpack environment defines
declare const APP_NAME: string;
declare const BUILD_JOB: string;
declare const BUILD_RUNNER: string;
declare const GIT_BRANCH: string;
declare const GIT_COMMIT: string;
declare const NODE_VERSION: string;
declare const WEBPACK_VERSION: string;
export const VERSION_INFO = {
app: {
name: APP_NAME,
},
build: {
job: BUILD_JOB,
node: NODE_VERSION,
runner: BUILD_RUNNER,
webpack: WEBPACK_VERSION,
},
git: {
branch: GIT_BRANCH,
commit: GIT_COMMIT,
},
};