mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 13:40:41 +00:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
export * from './engine-core';
|
|
|
|
const version = '{{VERSION_PLACEHOLDER}}';
|
|
|
|
(window as any).AliLowCodeEngine.version = version;
|
|
|
|
console.log(
|
|
`%c AliLowCodeEngine %c v${version} `,
|
|
'padding: 2px 1px; border-radius: 3px 0 0 3px; color: #fff; background: #606060; font-weight: bold;',
|
|
'padding: 2px 1px; border-radius: 0 3px 3px 0; color: #fff; background: #42c02e; font-weight: bold;',
|
|
);
|