1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-02 08:05:58 +09:00
cherrypick/index.js
2019-09-10 17:15:38 +09:00

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.');
}