From 3a7d569d35e752ff0da2a34d5aa4d3124b7a8a2e Mon Sep 17 00:00:00 2001 From: Matthieu Riegler Date: Tue, 20 May 2025 15:58:50 +0200 Subject: [PATCH] docs(docs-infra): fix substitution regex (#61515) It was replacing `rgba(0,0,0,0)` with `rgba(99.99.99, 0)` PR Close #61515 --- adev/shared-docs/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/shared-docs/BUILD.bazel b/adev/shared-docs/BUILD.bazel index 96f9a379340..cd4ee29b16a 100644 --- a/adev/shared-docs/BUILD.bazel +++ b/adev/shared-docs/BUILD.bazel @@ -91,6 +91,6 @@ pkg_npm( ], substitutions = { # Force the "unstamped" versions to be later than current so they are considered up to date. - "0.0.0": "99.99.99", + "0\\.0\\.0": "99.99.99", }, )