From 6724d1aee97355562b020db9f50fdfe6077c5be6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 12:20:08 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump chrome-devtools-frontend Bumps the bundled-devtools group with 1 update: [chrome-devtools-frontend](https://github.com/ChromeDevTools/devtools-frontend). Updates `chrome-devtools-frontend` from 1.0.1570343 to 1.0.1571573 - [Commits](https://github.com/ChromeDevTools/devtools-frontend/compare/v1.0.1570343...v1.0.1571573) --- updated-dependencies: - dependency-name: chrome-devtools-frontend dependency-version: 1.0.1571573 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: bundled-devtools ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e2dd2c96b..5b6c43127 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,7 @@ "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", - "chrome-devtools-frontend": "1.0.1570343", + "chrome-devtools-frontend": "1.0.1571573", "core-js": "3.48.0", "debug": "4.4.3", "eslint": "^9.35.0", @@ -2564,9 +2564,9 @@ } }, "node_modules/chrome-devtools-frontend": { - "version": "1.0.1570343", - "resolved": "https://registry.npmjs.org/chrome-devtools-frontend/-/chrome-devtools-frontend-1.0.1570343.tgz", - "integrity": "sha512-6gzAe+geG3qRgFfx0Ir/BCKFN/Cw/KprnMpvNCQQljJ4oP1PnqcDuLgcKsc2Nlk1NjBRg88dCLfD1xx7ODvZpQ==", + "version": "1.0.1571573", + "resolved": "https://registry.npmjs.org/chrome-devtools-frontend/-/chrome-devtools-frontend-1.0.1571573.tgz", + "integrity": "sha512-oB7E//+80D8MOix2Y8iO4YV4I2rkNom5WRl2vyU8SwYlwhz/aEaTdyFzN9H/NnfGdp+akW0PfdCXQccMb8cvaw==", "dev": true, "license": "BSD-3-Clause" }, diff --git a/package.json b/package.json index c2e7c6252..9306fef9c 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", - "chrome-devtools-frontend": "1.0.1570343", + "chrome-devtools-frontend": "1.0.1571573", "core-js": "3.48.0", "debug": "4.4.3", "eslint": "^9.35.0", From df995b47c0386187ca44dc252294ed731ad377ff Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Thu, 22 Jan 2026 13:39:02 +0100 Subject: [PATCH 2/2] chore: fixes --- scripts/post-build.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/scripts/post-build.ts b/scripts/post-build.ts index 2193ed120..edf822599 100644 --- a/scripts/post-build.ts +++ b/scripts/post-build.ts @@ -67,6 +67,28 @@ export const Runtime = { } export const experiments = { isEnabled: () => false, +} +export const ExperimentName = { + ALL: '*', + CAPTURE_NODE_CREATION_STACKS: 'capture-node-creation-stacks', + LIVE_HEAP_PROFILE: 'live-heap-profile', + PROTOCOL_MONITOR: 'protocol-monitor', + SAMPLING_HEAP_PROFILER_TIMELINE: 'sampling-heap-profiler-timeline', + SHOW_OPTION_TO_EXPOSE_INTERNALS_IN_HEAP_SNAPSHOT: 'show-option-to-expose-internals-in-heap-snapshot', + TIMELINE_INVALIDATION_TRACKING: 'timeline-invalidation-tracking', + TIMELINE_SHOW_ALL_EVENTS: 'timeline-show-all-events', + TIMELINE_V8_RUNTIME_CALL_STATS: 'timeline-v8-runtime-call-stats', + APCA: 'apca', + FONT_EDITOR: 'font-editor', + FULL_ACCESSIBILITY_TREE: 'full-accessibility-tree', + CONTRAST_ISSUES: 'contrast-issues', + EXPERIMENTAL_COOKIE_FEATURES: 'experimental-cookie-features', + INSTRUMENTATION_BREAKPOINTS: 'instrumentation-breakpoints', + AUTHORED_DEPLOYED_GROUPING: 'authored-deployed-grouping', + JUST_MY_CODE: 'just-my-code', + USE_SOURCE_MAP_SCOPES: 'use-source-map-scopes', + TIMELINE_SHOW_POST_MESSAGE_EVENTS: 'timeline-show-postmessage-events', + TIMELINE_DEBUG_MODE: 'timeline-debug-mode', } `; writeFile(runtimeFile, runtimeContent);