mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-28 12:43:35 +03:00
15 lines
244 B
JavaScript
15 lines
244 B
JavaScript
import { LogHelper } from '@/helpers/log-helper'
|
|
|
|
import buildApp from './build-app'
|
|
|
|
/**
|
|
* Execute the building app script
|
|
*/
|
|
;(async () => {
|
|
try {
|
|
await buildApp()
|
|
} catch (e) {
|
|
LogHelper.error(`Failed to build: ${e}`)
|
|
}
|
|
})()
|