devops: remove playwright-cli from this repo (#1378)

This commit is contained in:
Yury Semikhatsky
2026-02-06 13:40:38 -08:00
committed by GitHub
parent a3d2ba699a
commit 1c8807acef
15 changed files with 210 additions and 1045 deletions

12
roll.js
View File

@@ -15,11 +15,13 @@ function copyConfig() {
}
function updatePlaywrightVersion(version) {
const files = [
path.join(__dirname, 'package.json'),
path.join(__dirname, 'packages', 'playwright-mcp', 'package.json'),
path.join(__dirname, 'packages', 'playwright-cli', 'package.json'),
];
const packagesDir = path.join(__dirname, 'packages');
const files = [path.join(__dirname, 'package.json')];
for (const entry of fs.readdirSync(packagesDir, { withFileTypes: true })) {
const pkgJson = path.join(packagesDir, entry.name, 'package.json');
if (fs.existsSync(pkgJson))
files.push(pkgJson);
}
for (const file of files) {
const json = JSON.parse(fs.readFileSync(file, 'utf-8'));