-
-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More perf improvements #232
Conversation
🦋 Changeset detectedLatest commit: 3d2cf76 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
} | ||
|
||
// account for >1 multiline attribute | ||
if (pretty) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My guess is that this is always true since this whole function is now the pretty printing path.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
heh I should rename this as I am doing
if (
opts.pretty ||
opts.sortAttributes ||
opts.shallow ||
opts.allAttributes ||
opts.xml ||
opts.attributeHook
) {
To get to this code path 😅 wanted to create a very hot-path for optimized string-rendering
* speed up entity encoding * use constants for mangle props, remove opts intermediary, collapse helper functions (not as sure on that one), inline fragment rendering. * slight improvement to the d8 bench runner * add color picker bench
No description provided.