@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
23 lines (22 loc) • 511 B
JavaScript
//#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
export { bootstrap };
//# sourceMappingURL=bootstrap.mjs.map