You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It this a valid use case? While debugging the server, I saw data like " were encoded into "e; to produce valid HTML. But the test file doesn't seem to quote them. It is not valid svelte syntax either.
elderjs/src/partialHydration/mountComponentsInHtml.ts
Line 17 in bf528f1
This runs forever when:
<\/\1>
doesn't match.This happens naturally when there is another tag stick with ejs component. Here is an example:
p><div
.</p><div>
can't match</div>
in the file.[^]*?
expand down to the entire file.[^]*?
down to the entire file...I think it will be better to write it as:
/<([^<]+) class="ejs-component[^"]*" data-ejs-component="([A-Za-z]+)" data-ejs-props="({[^"]*})" data-ejs-options="({[^"]*})"><\/\1>/gim
Ensure that:
After the fix, the build time reduces from 5 minutes to 9 seconds.
The text was updated successfully, but these errors were encountered: