From 08ce7eb5f3acba8a6d6d3345c73778df30c9a68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 1 May 2025 09:52:38 +0200 Subject: [PATCH] feat(v8): add dragonbox to V8 deps Refs: https://github.com/v8/v8/commit/2fc4f9545bd3a6002d5eec4e5988d38fb03fe532 Refs: https://github.com/v8/v8/commit/afb4ab89eceab03a4774247f47452664e8e56b79 --- lib/update-v8/constants.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/update-v8/constants.js b/lib/update-v8/constants.js index b4daef2e..86d601d6 100644 --- a/lib/update-v8/constants.js +++ b/lib/update-v8/constants.js @@ -44,6 +44,9 @@ const fastFloatReplace = `/third_party/fast_float/src/* const highwayIgnore = `/third_party/highway/src/* !/third_party/highway/src/hwy`; +const dragonboxIgnore = `/third_party/dragonbox/src/* +!/third_party/dragonbox/src/include`; + export const v8Deps = [ { name: 'trace_event', @@ -133,5 +136,14 @@ export const v8Deps = [ repo: 'third_party/simdutf', gitignore: '!/third_party/simdutf', since: 134 - } + }, + { + name: 'dragonbox', + repo: 'third_party/dragonbox/src', + gitignore: { + match: '/third_party/dragonbox/src', + replace: dragonboxIgnore + }, + since: 138 + }, ];