1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-11 10:25:40 +03:00
leon/scripts/app/run-build-app.js

15 lines
244 B
JavaScript
Raw Normal View History

import { LogHelper } from '@/helpers/log-helper'
2019-02-10 15:26:50 +03:00
import buildApp from './build-app'
2019-02-10 15:26:50 +03:00
/**
* Execute the building app script
*/
2022-09-03 14:12:41 +03:00
;(async () => {
2019-02-10 15:26:50 +03:00
try {
await buildApp()
} catch (e) {
LogHelper.error(`Failed to build: ${e}`)
2019-02-10 15:26:50 +03:00
}
})()