1.0.1 • Published 6 years ago

babel-plugin-transform-dynamic-import-to-static v1.0.1

Weekly downloads
10
License
MIT
Repository
-
Last release
6 years ago

JavaScript Style Guide code style: prettier Conventional Commits

babel-plugin-transform-dynamic-import-to-static

a babel plugin to convert dynamic import to static import

Purpose

This plugin hoists dynamic imports to static imports, and replaces dynamic import statements with immediately resolved promises, also won't touch static import.

import A from './A'

import('./B')

to

import A from './A'

import _default from './B'

Promise.resolve(_default)

See it in action in astexplorer

Usage

add as plugin to your babel configuration

{
  //...
  "plugins": [
    // ...
    "babel-plugin-transform-dynamic-import-to-static"
  ]
}

Use case

This plugin was made to use with react-hot-loader and react-loadable to ensure hot-reloading works out of the box with a code-split architecture. It is meant to be used only during development.