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

Remove querystring from filenames when writing to disk #361

Merged
merged 2 commits into from Jan 17, 2019

Conversation

GregWeil
Copy link
Contributor

What kind of change does this PR introduce?

This is a bug fix to bring file writing behavior closer to that of webpack and the WriteFilePlugin.

Did you add tests for your changes?

Yes

Summary

Webpack and the WriteFilePlugin cut off filenames at the first ?, so you can use filenames like '[name].js?[contenthash]' without writing hashes to your filesystem. This updates the dev middleware to do the same when writeToDisk is enabled.

Does this PR introduce a breaking change?

If you were using writeToDisk with a ? in output.filename then you won't end up with a ? in filenames on disk any more. If you pass a filter function to writeToDisk then that function will also stop getting the querystring.

Other information

Here's where querystrings get cut off in webpack and the writefileplugin:
https://github.com/webpack/webpack/blob/v4.28.4/lib/Compiler.js#L321
https://github.com/gajus/write-file-webpack-plugin/blob/v4.4.0/src/WriteFileWebpackPlugin.js#L174

@jsf-clabot
Copy link

jsf-clabot commented Jan 16, 2019

CLA assistant check
All committers have signed the CLA.

@codecov
Copy link

codecov bot commented Jan 16, 2019

Codecov Report

Merging #361 into master will increase coverage by 0.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #361      +/-   ##
==========================================
+ Coverage   96.82%   96.83%   +0.01%     
==========================================
  Files           7        7              
  Lines         252      253       +1     
==========================================
+ Hits          244      245       +1     
  Misses          8        8
Impacted Files Coverage Δ
lib/fs.js 95.23% <100%> (+0.11%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0e8ac82...f794c8b. Read the comment docs.

1 similar comment
@codecov
Copy link

codecov bot commented Jan 16, 2019

Codecov Report

Merging #361 into master will increase coverage by 0.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #361      +/-   ##
==========================================
+ Coverage   96.82%   96.83%   +0.01%     
==========================================
  Files           7        7              
  Lines         252      253       +1     
==========================================
+ Hits          244      245       +1     
  Misses          8        8
Impacted Files Coverage Δ
lib/fs.js 95.23% <100%> (+0.11%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0e8ac82...f794c8b. Read the comment docs.

Copy link
Member

@alexander-akait alexander-akait left a comment

Choose a reason for hiding this comment

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

Good job, we use same logic in webpack https://github.com/webpack/webpack/blob/master/lib/Compiler.js#L319, maybe we can increase perf using split in webpack

@alexander-akait alexander-akait merged commit 90d0d94 into webpack:master Jan 17, 2019
@alexander-akait
Copy link
Member

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.

None yet

3 participants