prr-kit 2.0.7 → 2.0.8
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
|
@@ -157,7 +157,7 @@ class Installer {
|
|
|
157
157
|
if (toAdd.length === 0) return;
|
|
158
158
|
|
|
159
159
|
const separator = content.endsWith('\n') ? '' : '\n';
|
|
160
|
-
await fs.appendFile(gitignorePath, `${separator}${toAdd.join('\n')}\n`, 'utf8');
|
|
160
|
+
await fs.appendFile(gitignorePath, `${separator}# PR Review Kit\n${toAdd.join('\n')}\n`, 'utf8');
|
|
161
161
|
await prompts.log.info(` ✓ .gitignore updated (${toAdd.join(', ')})`);
|
|
162
162
|
}
|
|
163
163
|
|