https://github.com/angular/angular
Raw File
Tip revision: 28ea114d543bd22c9bd687518d94523670a5ac12 authored by Alex Rickabaugh on 05 January 2023, 21:09:54 UTC
release: cut the v15.1.0-rc.0 release
Tip revision: 28ea114
puppeteer-chromedriver-versions.js
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */


// Mapping of puppeteer releases to their default Chrome version
// derived from https://github.com/puppeteer/puppeteer/blob/master/docs/api.md.
// The puppeteer package.json file contains the compatible Chrome revision such as
// "chromium_revision": "722234" but this does not map easily to the Chrome version
// so we use this mapping here instead.
module.exports = {
  '18.0.5' : '106.0.5249.21',
  '10.2.0' : '93.0.4577.63',
};
back to top