1
1
mirror of https://github.com/leon-ai/leon.git synced 2025-01-03 14:18:50 +03:00
leon/scripts/app/run-build-app.js
2019-02-10 20:26:50 +08:00

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