mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore(deps): Bump the dependencies group with 2 updates (#11939)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
This commit is contained in:
parent
19fe78f797
commit
5bbee1068f
3565
package-lock.json
generated
3565
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -51,13 +51,13 @@
|
||||
"node": ">=18"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular-devkit/architect": "^0.1701.3",
|
||||
"@angular-devkit/core": "^17.0.7",
|
||||
"@angular-devkit/schematics": "^17.0.7"
|
||||
"@angular-devkit/architect": "0.1702.0",
|
||||
"@angular-devkit/core": "17.2.0",
|
||||
"@angular-devkit/schematics": "17.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@schematics/angular": "^17.0.7",
|
||||
"@angular/cli": "^17.0.7"
|
||||
"@schematics/angular": "17.2.0",
|
||||
"@angular/cli": "17.2.0"
|
||||
},
|
||||
"files": [
|
||||
"lib",
|
||||
|
@ -202,4 +202,4 @@ async function executeE2ETest(
|
||||
}
|
||||
}
|
||||
|
||||
export default createBuilder<PuppeteerBuilderOptions>(executeE2ETest) as any;
|
||||
export default createBuilder<PuppeteerBuilderOptions>(executeE2ETest);
|
||||
|
@ -13,8 +13,14 @@ import {cwd} from 'process';
|
||||
class AngularProject {
|
||||
static ports = new Set();
|
||||
static randomPort() {
|
||||
const min = 4000;
|
||||
const max = 9876;
|
||||
/**
|
||||
* Some ports are restricted by Chromium and will fail to connect
|
||||
* to prevent we start after the
|
||||
*
|
||||
* https://source.chromium.org/chromium/chromium/src/+/main:net/base/port_util.cc;l=107?q=kRestrictedPorts&ss=chromium
|
||||
*/
|
||||
const min = 10101;
|
||||
const max = 20202;
|
||||
return Math.floor(Math.random() * (max - min + 1) + min);
|
||||
}
|
||||
static port() {
|
||||
|
Loading…
Reference in New Issue
Block a user