-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
28 lines (24 loc) · 970 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env node
// const path = require('path');
import { red } from 'chalk';
import clear from 'clear';
import { textSync } from 'figlet';
import { Command } from 'commander';
import { count, countFromFile, CountResult, info } from 'letter-count';
console.log(count('The quick brown fox jumps over the lazy -5.5 dog -4567 ', '-s'));
// console.log(countFromFile('package.json', '-c'));
// const infos: CountResult = info();
// clear();
// console.log(red(textSync(`letter-count-cli ${infos.version}`, { horizontalLayout: 'full' })));
//
// const program: Command = new Command();
//
// program
// .name(infos.name)
// .description(infos.description)
// .version(infos.version)
// .description("An example CLI for ordering pizza's")
// .option('-v, --version', 'Add peppers')
// .option('-c, --char <type>', 'Add the specified type of foo [marble]')
// .option('-C, --no-char', 'You do not want any bar')
// .parse(process.argv);