1.0.0 • Published 4 years ago

babel-plugin-dynamic-import-chunk-name v1.0.0

Weekly downloads
225
License
MIT
Repository
github
Last release
4 years ago

babel-plugin-dynamic-import-chunk-name

Build status package version semantic-release

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"]
}