From 9cb641094d909fa0935bea0ae310f670c8c361dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 24 Aug 2024 09:08:55 +0200 Subject: [PATCH] feat(v8): add fast_float to V8 deps Refs: https://github.com/v8/v8/commit/7384d3f97e671c4719ba3fcce2dd7aa5e7a67136 --- lib/update-v8/constants.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/update-v8/constants.js b/lib/update-v8/constants.js index 31a99635..d8ed501f 100644 --- a/lib/update-v8/constants.js +++ b/lib/update-v8/constants.js @@ -38,6 +38,9 @@ const fp16Ignore = `!/third_party/fp16 /third_party/fp16/src/* !/third_party/fp16/src/include`; +const fastFloatReplace = `/third_party/fast_float/src/* +!/third_party/fast_float/src/include`; + export const v8Deps = [ { name: 'trace_event', @@ -103,5 +106,14 @@ export const v8Deps = [ repo: 'third_party/fp16/src', gitignore: fp16Ignore, since: 124 + }, + { + name: 'fast_float', + repo: 'third_party/fast_float/src', + gitignore: { + match: '/third_party/fast_float/src', + replace: fastFloatReplace + }, + since: 130 } ];