This package's documentation for [extracting CSS based on entry]( https://www.npmjs.com/package/mini-css-extract-plugin/v/0.11.1#extracting-css-based-on-entry) uses `.issuer`: ```js function recursiveIssuer(m) { if (m.issuer) { return recursiveIssuer(m.issuer); } else if (m.name) { return m.name; } else { return false; } } ... ``` This results in the following warning: ```js [DEP_WEBPACK_MODULE_ISSUER] DeprecationWarning: Module.issuer: Use new ModuleGraph API ``` Not a big deal, but it'd be nice for the documentation to be updated at some point :)
This package's documentation for extracting CSS based on entry uses
.issuer:This results in the following warning:
Not a big deal, but it'd be nice for the documentation to be updated at some point :)