2021-08-19 04:33:41 -05:00
|
|
|
/*
|
|
|
|
import * as fs from 'fs';
|
|
|
|
|
|
|
|
if (fs.existsSync('./built')) {
|
|
|
|
import('./built/index.js').then(built => built());
|
|
|
|
} else {
|
|
|
|
console.log('Built code is not found. Probably an error occurred during a build or you just forgot to build.');
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2019-09-10 03:15:38 -05:00
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
if (fs.existsSync('./built')) {
|
|
|
|
require('./built').default();
|
|
|
|
} else {
|
|
|
|
console.log('Built code is not found. Probably an error occurred during a build or you just forgot to build.');
|
|
|
|
}
|