2.0.0 • Published 5 years ago

babel-plugin-demand-loading v2.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

babel-plugin-demand-loading

version Babel MIT PRs Welcome

下载支持

支持babel6、babel7

babel6 1.x.x

npm install babel-plugin-demand-loading@1 --save-dev

babel7 2.x.x

npm install babel-plugin-demand-loading@2 --save-dev

使用说明

// e.g.
// .babelrc
"plugins": [
    [
      "babel-plugin-demand-loading",
      {
        "library": "kit"
      },
      "syntax-decorators"
    ],
  ]
// index.js
import {fromat} from 'kit';
// 他会把 引用 kit 转换成 引用 kit/format
// 实现按需加载