### Description Upgrades Playwright from `^1.59.1` to `^1.60.0` across the monorepo workspace. ### Why is this needed? In clean CI environments using Node.js 24 (the current LTS), Playwright versions older than `1.60.0` hang indefinitely during the zip extraction phase of `playwright install chromium`. This is a known compatibility issue with Playwright's older extraction utility (`yauzl`) running on Node 24+. Playwright resolved this bug in version `1.60.0`. Upgrading ensures the CI test pipeline runs smoothly without hanging. ### Proposed Changes - Upgraded `"playwright"` to `^1.60.0` in: - Root `package.json` - `packages/vishot-runner-browser/package.json` - `packages/vishot-runner-electron/package.json` - `services/twitter-services/package.json` - Regenerated `pnpm-lock.yaml` via `pnpm install`. --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
30 lines
731 B
JSON
30 lines
731 B
JSON
{
|
|
"name": "@proj-airi/vishot-runner-browser",
|
|
"type": "module",
|
|
"version": "0.10.2",
|
|
"private": true,
|
|
"description": "Browser capture runner for Vishot scenes",
|
|
"author": {
|
|
"name": "Moeru AI Project AIRI Team",
|
|
"email": "airi@moeru.ai",
|
|
"url": "https://github.com/moeru-ai"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/moeru-ai/airi.git",
|
|
"directory": "packages/vishot-runner-browser"
|
|
},
|
|
"exports": "./src/index.ts",
|
|
"scripts": {
|
|
"capture": "tsx src/cli/capture.ts",
|
|
"test:run": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@moeru/std": "catalog:",
|
|
"meow": "catalog:",
|
|
"playwright": "^1.60.0"
|
|
}
|
|
}
|