chore: mark v0.0.63 (#1365)

This commit is contained in:
Pavel Feldman
2026-02-03 15:21:11 -08:00
committed by GitHub
parent d246fff5d7
commit c83315e4c9
11 changed files with 154 additions and 121 deletions

View File

@@ -16,8 +16,8 @@
*/
const { program } = require('playwright/lib/mcp/terminal/program');
const packageJSON = require('./package.json');
program({ version: packageJSON.version }).catch(e => {
const packageLocation = require.resolve('./package.json');
program(packageLocation).catch(e => {
console.error(e.message);
process.exit(1);
});