Last active
January 24, 2016 19:43
-
-
Save vladkosinov/a916047d9ea74a10bf4c to your computer and use it in GitHub Desktop.
Example with overriding HtmlWebpackPlugin params to templateContent function and compilation instance manipulating
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { remove } from 'lodash'; | |
const MANIFEST_CHUNK_NAME_REGEX = /.*manifest\..+\.js/; | |
export default function (templateParams, compilation) { | |
const stats = { | |
styles: templateParams.htmlWebpackPlugin.files.css, | |
scripts: templateParams.htmlWebpackPlugin.files.js | |
}; | |
const manifestChunkName = Object.keys(compilation.assets).find((asset) => { | |
return MANIFEST_CHUNK_NAME_REGEX.test(asset); | |
}); | |
if (manifestChunkName) { | |
stats.manifestContent = compilation.assets[manifestChunkName]._value; | |
remove(templateParams.htmlWebpackPlugin.files.js, name => { | |
return MANIFEST_CHUNK_NAME_REGEX.test(name); | |
}); | |
/* eslint-disable no-param-reassign */ | |
compilation.assets['stats.json'] = compilation.assets[manifestChunkName]; | |
compilation.assets['stats.json']._value = JSON.stringify(stats, null, 4); | |
delete compilation.assets[manifestChunkName]; | |
/* eslint-enable no-param-reassign */ | |
} | |
return { assets: stats }; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This trick gives us ability to write pure template files: | |
doctype html | |
html | |
head | |
each filePath in assets.styles | |
link(rel="stylesheet", href=filePath) | |
body | |
#app | |
if assets.manifestContent | |
script !{ assets.manifestContent } | |
each filePath in assets.scripts | |
script(src=filePath) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
plugins: [ | |
new HtmlWebpackPlugin({ | |
templateContent: compose(indexPageTemplate, extractStats) | |
}) | |
] | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jantimon
this function will receive only first argument :(
https://github.com/ampedandwired/html-webpack-plugin/blob/master/index.js#L212