@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
25 lines (23 loc) • 594 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
//#region src/utils/runParallel/bootstrap.ts
const bootstrap = (_name) => {
switch (process.argv.slice(2)[0]) {
case void 0:
case "-h":
case "--help":
console.log("Help not implemented");
return;
case "-v":
case "--version":
console.log("Version not implemented");
return;
default:
process.stdout.setMaxListeners(0);
process.stderr.setMaxListeners(0);
process.stdin.setMaxListeners(0);
return;
}
};
//#endregion
exports.bootstrap = bootstrap;
//# sourceMappingURL=bootstrap.cjs.map