mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 08:44:25 +08:00
code refactor
This commit is contained in:
+16
-13
@@ -1,15 +1,18 @@
|
||||
export default {
|
||||
getVersion: () => {
|
||||
let version = __EZBOOKKEEPING_VERSION__ || 'unknown'; // eslint-disable-line
|
||||
let commitHash = __EZBOOKKEEPING_BUILD_COMMIT_HASH__; // eslint-disable-line
|
||||
export function isProduction() {
|
||||
return process.env.NODE_ENV === 'production';
|
||||
}
|
||||
|
||||
if (commitHash) {
|
||||
return `${version} (${commitHash.substring(0, Math.min(7, commitHash.length))})`
|
||||
} else {
|
||||
return version;
|
||||
}
|
||||
},
|
||||
getBuildTime: () => {
|
||||
return __EZBOOKKEEPING_BUILD_UNIX_TIME__; // eslint-disable-line
|
||||
export function getVersion() {
|
||||
let version = __EZBOOKKEEPING_VERSION__ || 'unknown'; // eslint-disable-line
|
||||
let commitHash = __EZBOOKKEEPING_BUILD_COMMIT_HASH__; // eslint-disable-line
|
||||
|
||||
if (commitHash) {
|
||||
return `${version} (${commitHash.substring(0, Math.min(7, commitHash.length))})`
|
||||
} else {
|
||||
return version;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export function getBuildTime() {
|
||||
return __EZBOOKKEEPING_BUILD_UNIX_TIME__; // eslint-disable-line
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user