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

Results of imports not taken into account in file hashes #1957

Closed
jacob-ebey opened this issue Jan 24, 2022 · 3 comments
Closed

Results of imports not taken into account in file hashes #1957

jacob-ebey opened this issue Jan 24, 2022 · 3 comments

Comments

@jacob-ebey
Copy link

jacob-ebey commented Jan 24, 2022

Esbuild does not seem to be taking into account the inlined values that results from importing a file.

Actual Behavior

Given these two files:

index.js

import href from "./index.css";
console.log(href);

index.css

h1 { color: blue; }

Running a build may output:

  • build/index-hash1.css
  • build/index-hash1.js

Now making a change to index.css (color: red; or something) we get the same hash for the .js file, but a new hash for the .css file:

  • build/index-hash2.css
  • build/index-hash1.js

Here is a repository with the described behavior above: https://github.com/jacob-ebey/esbuild-hash-repro

Expected Behavior

When index.css changes, the resulting contents of the bundled index.js also changes. I'd expect the hash for the ".js" output file to change along with the contents.

@kiliman
Copy link

kiliman commented Jan 24, 2022

When I was troubleshooting this issue, I copied the output of the first build, then ran the build again after changing the .css file. If you notice, the index.js file has the SAME hash in both builds, but the contents are DIFFERENT. I don't think that was the intended result.

image

@evanw
Copy link
Owner

evanw commented Jan 25, 2022

Thanks for the report. This is a bug and is not intentional. Injected file paths are only finalized at the end of the linking phase since they need to be calculated relative to other output file paths, and this graph can have cycles. The hash calculation was accounting for injected file paths in cross-chunk import statements but not injected file paths due to the file loader. I believe this simple to fix.

@jacob-ebey
Copy link
Author

Thank you @evanw :)

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

No branches or pull requests

3 participants