readr-cli 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -177,13 +177,13 @@ function showHelp() {
|
|
|
177
177
|
header();
|
|
178
178
|
console.log(chalk.bold(' Commands:\n'));
|
|
179
179
|
const cmds = [
|
|
180
|
-
['
|
|
181
|
-
['
|
|
182
|
-
['
|
|
183
|
-
['
|
|
184
|
-
['
|
|
185
|
-
['
|
|
186
|
-
['
|
|
180
|
+
['reading add', 'Add a new book'],
|
|
181
|
+
['reading start', 'Start a reading session'],
|
|
182
|
+
['reading pause', 'Pause or resume current session'],
|
|
183
|
+
['reading stop', 'End session & log pages read'],
|
|
184
|
+
['reading list', 'List all books with progress'],
|
|
185
|
+
['reading stats', 'Overall reading statistics'],
|
|
186
|
+
['reading help', 'Show this help'],
|
|
187
187
|
];
|
|
188
188
|
for (const [cmd, desc] of cmds) {
|
|
189
189
|
console.log(` ${chalk.bold.green(cmd.padEnd(14))} ${chalk.gray(desc)}`);
|