Skip to content

Commit

Permalink
Properly encode file names emitted as part of URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
zbigg authored and jantimon committed Aug 7, 2019
1 parent 34d8aa5 commit 35a1541
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
12 changes: 11 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ class HtmlWebpackPlugin {
// E.g. bundle.js -> /bundle.js?hash
const entryPointPublicPaths = entryPointFiles
.map(chunkFile => {
const entryPointPublicPath = publicPath + chunkFile;
const entryPointPublicPath = publicPath + this.urlencodePath(chunkFile);
return this.options.hash
? this.appendHash(entryPointPublicPath, compilationHash)
: entryPointPublicPath;
Expand Down Expand Up @@ -926,6 +926,16 @@ class HtmlWebpackPlugin {
return url + (url.indexOf('?') === -1 ? '?' : '&') + hash;
}

/**
* Encode each path component using `encodeURIComponent` as files can contain characters
* which needs special encoding in URLs like `+ `.
*
* @param {string} filePath
*/
urlencodePath (filePath) {
return filePath.split('/').map(encodeURIComponent).join('/');
}

/**
* Helper to return the absolute template path with a fallback loader
* @param {string} template
Expand Down
12 changes: 12 additions & 0 deletions spec/basic.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ describe('HtmlWebpackPlugin', () => {
}, [/<body>[\s]*<script src="index_bundle.js"><\/script>[\s]*<\/body>/], null, done);
});

it('properly encodes file names in emitted URIs', done => {
testHtmlPlugin({
mode: 'production',
entry: path.join(__dirname, 'fixtures/index.js'),
output: {
path: OUTPUT_DIR,
filename: 'foo/very fancy+name.js'
},
plugins: [new HtmlWebpackPlugin()]
}, [/<body>[\s]*<script src="foo\/very%20fancy%2Bname.js"><\/script>[\s]*<\/body>/], null, done);
});

it('generates a default index.html file with multiple entry points', done => {
testHtmlPlugin({
mode: 'production',
Expand Down

0 comments on commit 35a1541

Please sign in to comment.