@hel-demo/mono-libs
Version:
hel-mono demo libs
16 lines (11 loc) • 477 B
text/typescript
/**
* [hel-tip] 此文件由 mono-helper 脚本自动生成,无需修改
* hel模块名称配置
*/
import { monoLog } from 'hel-mono-runtime-helper';
import { DEPLOY_ENV } from './deployEnv';
import { DEV_INFO } from './devInfo';
const { groupName, names } = DEV_INFO.mods['@hel-demo/mono-libs'];
export const APP_GROUP_NAME = groupName;
export const APP_NAME = names[DEPLOY_ENV] || groupName;
monoLog(`deployEnv of ${APP_GROUP_NAME}(${APP_NAME}) is ${DEPLOY_ENV}`);