babel-plugin-dynamic-import-chunk-name
v1.0.0
Published
Babel plugin to automatically add a webpackChunkName comment to dynamic imports.
Downloads
484
Maintainers
Readme
babel-plugin-dynamic-import-chunk-name
This plugin will automatically generate webpackChunkName
comments for dynamic imports using the imported filename.
Example
In
import("./core/DocumentParser.js")
Out
import(/*webpackChunkName: 'core--document-parser'*/ "./core/DocumentParser.js")
Installation
npm install --save-dev babel-plugin-dynamic-import-chunk-name
Usage
Add the following to your .babelrc
file.
{
"plugins": ["dynamic-import-chunk-name"]
}