prr-kit 2.0.6 → 2.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prr-kit",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "AI-driven Pull Request Review Kit — structured agent workflows for thorough, consistent code review",
5
5
  "main": "tools/cli/prr-cli.js",
6
6
  "bin": {
@@ -65,7 +65,10 @@ class Installer {
65
65
 
66
66
  // Update .gitignore
67
67
  const ideGitignorePatterns = selectedIdes.flatMap((ide) =>
68
- this.ideManager.getTargetDirs(ide).map((dir) => `${dir}/prr-*`)
68
+ this.ideManager.getTargetDirs(ide).flatMap((dir) => [
69
+ `${dir}/prr-*`,
70
+ `${dir}/.prr-installed.json`,
71
+ ])
69
72
  );
70
73
  await this.updateGitignore(projectDir, config.outputFolder || '_prr-output', ideGitignorePatterns);
71
74