1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-08-16 13:40:51 +03:00
leon/scripts/app/run-build-app.js
2022-09-26 21:29:56 +08:00

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}`)
}
})()