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:
dependabot[bot] 2024-02-22 11:09:12 +01:00 committed by GitHub
parent 19fe78f797
commit 5bbee1068f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 2038 additions and 1544 deletions

1
.npmrc
View File

@ -1 +1,2 @@
access=public access=public
install-strategy=nested

3565
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -51,13 +51,13 @@
"node": ">=18" "node": ">=18"
}, },
"dependencies": { "dependencies": {
"@angular-devkit/architect": "^0.1701.3", "@angular-devkit/architect": "0.1702.0",
"@angular-devkit/core": "^17.0.7", "@angular-devkit/core": "17.2.0",
"@angular-devkit/schematics": "^17.0.7" "@angular-devkit/schematics": "17.2.0"
}, },
"devDependencies": { "devDependencies": {
"@schematics/angular": "^17.0.7", "@schematics/angular": "17.2.0",
"@angular/cli": "^17.0.7" "@angular/cli": "17.2.0"
}, },
"files": [ "files": [
"lib", "lib",

View File

@ -202,4 +202,4 @@ async function executeE2ETest(
} }
} }
export default createBuilder<PuppeteerBuilderOptions>(executeE2ETest) as any; export default createBuilder<PuppeteerBuilderOptions>(executeE2ETest);

View File

@ -13,8 +13,14 @@ import {cwd} from 'process';
class AngularProject { class AngularProject {
static ports = new Set(); static ports = new Set();
static randomPort() { 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); return Math.floor(Math.random() * (max - min + 1) + min);
} }
static port() { static port() {