Floriel
Floriel
I have not found a solution for this so far. But you can specify the path of the source file manually if needed with `sourcemap.from` ```coffee purgecss: options: content: ["KiraHTML.html"]...
Sure no problem, thanks.
Documentation updated and is showing the correct syntax now ``` const { PurgecssPlugin } = require("purgecss-webpack-plugin"); ```
I'll release a beta version with the fix this weekend
It's released under the next tag for the packages purgecss and @fullhuman/postcss-purgecss `npm i -D @fullhuman/postcss-purgecss@next` should give you the version with the fix.
You are right, I will add it under Breaking Changes.
Yes, PurgeCSS will not purged the inline CSS from an HTML out of the box.
Thanks for looking into it. At the moment, the "fix" would be to use the default export with: ```js purgecss.default({ content: ["src/index.ts"], }), ``` I will add a named export...