Skip to content

Commit

Permalink
feat(v8): add fast_float to V8 deps (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Aug 27, 2024
1 parent 4f7ec3e commit 4e8ec9c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/update-v8/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
}
];

0 comments on commit 4e8ec9c

Please sign in to comment.