mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
9 lines
338 B
TypeScript
9 lines
338 B
TypeScript
import { version } from './engine-core';
|
|
|
|
export * from './engine-core';
|
|
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;',
|
|
);
|