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.
Files changed (2) hide show
  1. package/dist/index.js +7 -7
  2. 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
- ['read add', 'Add a new book'],
181
- ['read start', 'Start a reading session'],
182
- ['read pause', 'Pause or resume current session'],
183
- ['read stop', 'End session & log pages read'],
184
- ['read list', 'List all books with progress'],
185
- ['read stats', 'Overall reading statistics'],
186
- ['read help', 'Show this help'],
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)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "readr-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Beautiful CLI to track reading sessions, speed, and book completion ETA",
5
5
  "type": "module",
6
6
  "bin": {