Skip to content

Conversation

@stibel
Copy link

@stibel stibel commented Nov 4, 2025

No description provided.

@5ZYSZ3K 5ZYSZ3K requested a review from jsamr November 5, 2025 14:39
Copy link
Contributor

@jsamr jsamr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution!

bun.lockb Outdated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bun looks like an interesting choice. But at the moment we have both yarn.lock and bun.lockdb
Is there any public place where you have discussed this preference?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I used it out of habit and forgot to remove the generated files. I'll get on it.

Copy link
Collaborator

@5ZYSZ3K 5ZYSZ3K left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mostly minor issues

trackingID: 'G-CYR1XDV25N',
anonymizeIP: true
},
// Algolia search disabled - requires appId in Docusaurus v3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add something like TODO: remove or fix here to help find this place in the future

const props = reflection.children?.filter(
(c) => c.kind === ReflectionKind.Property
(c) =>
(c as any).kindString === 'Property' || c.kind === ReflectionKind.Property
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not a fan of such a cast, add TODO: comment here

const methods = reflection.children?.filter(
(c) => c.kind === ReflectionKind.Method
(c) =>
(c as any).kindString === 'Method' || c.kind === ReflectionKind.Method
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as above

<TokenPlain>{reflection.name}</TokenPlain>
{renderTypeParameters(
reflection.typeParameter,
(reflection as any).typeParameter ||
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here and throughout this file as well

@codecov
Copy link

codecov bot commented Nov 24, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.65%. Comparing base (34284d7) to head (0310108).
⚠️ Report is 20 commits behind head on chore/migrate-render-html-with-history.

Additional details and impacted files
@@                            Coverage Diff                             @@
##           chore/migrate-render-html-with-history      #18      +/-   ##
==========================================================================
- Coverage                                   99.30%   98.65%   -0.66%     
==========================================================================
  Files                                          57      140      +83     
  Lines                                        1153     2076     +923     
  Branches                                      315      636     +321     
==========================================================================
+ Hits                                         1145     2048     +903     
- Misses                                          8       27      +19     
- Partials                                        0        1       +1     
Flag Coverage Δ
css-processor 100.00% <ø> (ø)
render-html 97.83% <100.00%> (?)
transient-render-engine 98.95% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@5ZYSZ3K 5ZYSZ3K merged commit 9e12a16 into native-html:chore/migrate-render-html-with-history Nov 24, 2025
7 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants