reviw 0.7.1 → 0.9.1

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 (3) hide show
  1. package/README.md +7 -7
  2. package/cli.cjs +663 -323
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -46,10 +46,10 @@ npx reviw <file>
46
46
 
47
47
  ```bash
48
48
  # Single file
49
- reviw <file> [--port 3000] [--encoding utf8|shift_jis|...]
49
+ reviw <file> [--port 4989] [--encoding utf8|shift_jis|...]
50
50
 
51
51
  # Multiple files (each opens on consecutive ports)
52
- reviw file1.csv file2.md file3.tsv --port 3000
52
+ reviw file1.csv file2.md file3.tsv --port 4989
53
53
 
54
54
  # Diff from stdin
55
55
  git diff HEAD | reviw
@@ -59,7 +59,7 @@ reviw changes.diff
59
59
  ```
60
60
 
61
61
  ### Options
62
- - `--port <number>`: Specify starting port (default: 3000)
62
+ - `--port <number>`: Specify starting port (default: 4989)
63
63
  - `--encoding <encoding>`: Force specific encoding (auto-detected by default)
64
64
  - `--no-open`: Prevent automatic browser opening
65
65
 
@@ -72,16 +72,16 @@ reviw changes.diff
72
72
  ## Screenshots
73
73
 
74
74
  ### CSV View
75
- ![CSV View](./assets/screenshot-csv.png)
75
+ ![CSV View](./assets/screenshot-csv.png?v=2)
76
76
 
77
77
  ### Markdown View
78
- ![Markdown View](./assets/screenshot-md.png)
78
+ ![Markdown View](./assets/screenshot-md.png?v=2)
79
79
 
80
80
  ### Diff View
81
- ![Diff View](./assets/screenshot-diff.png)
81
+ ![Diff View](./assets/screenshot-diff.png?v=2)
82
82
 
83
83
  ### Mermaid Fullscreen
84
- ![Mermaid Fullscreen](./assets/screenshot-mermaid.png)
84
+ ![Mermaid Fullscreen](./assets/screenshot-mermaid.png?v=2)
85
85
 
86
86
  ## Output Example
87
87