1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 22:31:32 +03:00
leon/scripts/app/run-build-app.js
2021-03-02 17:02:55 +08:00

15 lines
220 B
JavaScript

import log from '@/helpers/log'
import buildApp from './build-app'
/**
* Execute the building app script
*/
(async () => {
try {
await buildApp()
} catch (e) {
log.error(`Failed to build: ${e}`)
}
})()