reviewme 0.0.4 → 0.0.6

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/README.md CHANGED
@@ -5,9 +5,7 @@ High performance Github PR like reviewer.
5
5
  ## Usage
6
6
 
7
7
  ```sh
8
- npx reviewme
9
- # or
10
- bunx reviewme
8
+ npx reviewme@latest
11
9
  ```
12
10
 
13
11
  ## License and acknowledgements
package/bin/reviewme.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  if (process.versions.bun) {
4
- console.error("reviewme requires Node.js 22.13 or newer. Run `bunx reviewme` without `--bun`.");
4
+ console.error("reviewme requires Node.js 22.13 or newer. Run `npx reviewme@latest`.");
5
5
  process.exitCode = 1;
6
6
  } else {
7
7
  const [major, minor] = process.versions.node.split(".").map(Number);