2022-01-26 11:22:20 +00:00
|
|
|
/**
|
2024-01-03 10:11:33 +00:00
|
|
|
* @license
|
|
|
|
* Copyright 2022 Google Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2022-01-26 11:22:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
const {
|
|
|
|
versionsPerRelease,
|
2023-11-17 00:16:13 +00:00
|
|
|
lastMaintainedChromeVersion,
|
2022-01-26 11:22:20 +00:00
|
|
|
} = require('../versions.js');
|
2023-11-17 00:16:13 +00:00
|
|
|
|
|
|
|
const version = versionsPerRelease.get(lastMaintainedChromeVersion);
|
2022-01-26 11:22:20 +00:00
|
|
|
if (version.toLowerCase() === 'next') {
|
|
|
|
console.error('Unexpected NEXT Puppeteer version in versions.js');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2022-11-15 11:54:25 +00:00
|
|
|
console.log(`< ${version.substring(1)}`);
|
2022-01-26 11:22:20 +00:00
|
|
|
process.exit(0);
|