mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
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.');
|
|
}
|