How to use the failWith function from cli
Find comprehensive JavaScript cli.failWith code examples handpicked from public code repositorys.
116 117 118 119 120 121 122 123 124 125
if (args.length !== 1 || args[0] !== 'new') { cli.failWith(`Unknown command: ${args.join(' ')}`); } if (!options.chapter) { cli.failWith('Missing required Chapter'); } if (readDir(__dirname).includes(`ch${options.chapter}`)) { cli.failWith(`Chapter ${options.chapter} already exists`);
25
65
0
+ 2 other calls in file