Skip to content
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

Add fallback compile for astro script and style load #9664

Merged
merged 1 commit into from
Jan 15, 2024

Conversation

bluwy
Copy link
Member

@bluwy bluwy commented Jan 11, 2024

Changes

Helps #9370 but does not fix it yet. This should reduce the occasional parsing error due to missing Astro compilation cache for its scripts and styles modules, which can often happen in HMR.

It does not fix the issue due to a Vite bug explained in #9370 (comment). I'm still trying to figure that out, but if I can't, I can probably add a workaround in a later PR too.

Testing

Tested manually with the issue's repro. I didn't add a test as the bug still exists, but it should not break other tests.

Docs

n/a. bug fix.

Copy link

changeset-bot bot commented Jan 11, 2024

🦋 Changeset detected

Latest commit: 9095f71

The changes in this PR will be included in the next version bump.

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

@github-actions github-actions bot added the pkg: astro Related to the core `astro` package (scope) label Jan 11, 2024
return null;
// In dev, HMR could cause this compile result to be empty, try to load it first
if (server) {
await server.transformRequest('/@fs' + filename);
Copy link
Contributor

Choose a reason for hiding this comment

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

this is inside load, this doesn't cause a loop?

Copy link
Member Author

Choose a reason for hiding this comment

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

The id of this load is something like /Users/bjorn/project/src/pages/index.astro/?astro&lang.css, but the filename here would be /Users/bjorn/project/src/pages/index.astro. So it won't cause a loop and should only transform the main Astro file so we have the cache ready.

@bluwy bluwy merged commit 1bf0ddd into main Jan 15, 2024
@bluwy bluwy deleted the improve-fallback-hmr branch January 15, 2024 15:26
@astrobot-houston astrobot-houston mentioned this pull request Jan 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg: astro Related to the core `astro` package (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants