Remove reviewer final prompt reinjection

This commit is contained in:
ejclaw
2026-05-16 18:51:02 +09:00
parent d6de6e13a5
commit 7574953158
5 changed files with 91 additions and 40 deletions

View File

@@ -129,15 +129,12 @@ describe('verification helpers', () => {
);
fs.writeFileSync(
path.join(repoDir, 'pnpm-lock.yaml'),
[
"lockfileVersion: '6.0'",
'settings:',
' autoInstallPeers: true',
' excludeLinksFromLockfile: false',
'importers:',
' .: {}',
'',
].join('\n'),
"lockfileVersion: '9.0'\n\n" +
'settings:\n' +
' autoInstallPeers: true\n' +
' excludeLinksFromLockfile: false\n\n' +
'importers:\n\n' +
' .: {}\n',
);
fs.mkdirSync(path.join(repoDir, 'node_modules', '.bin'), {
recursive: true,