项目作者: Zenquan

项目描述 :
?组件库/库按需引入的babel插件
高级语言: JavaScript
项目地址: git://github.com/Zenquan/babel-import-plugin.git
创建时间: 2018-07-23T09:31:16Z
项目社区:https://github.com/Zenquan/babel-import-plugin

开源协议:

下载


babel-plugin-import

安装

  1. npm i @jomsou/babel-plugin-import -D

使用

插件选项

Param Type Default Description
libName String null 作用的组件库包名
libPath String lib 作用的目录,eg:’antd/lib/button’ -> libPath: “lib”
disable Boolean false true为不起作用,false为起作用。

.babelrc配置

  1. module.exports = {
  2. "plugins": [
  3. ["@jomsou/import", {
  4. "libName": "antd",
  5. "libPath": "lib",
  6. "disable": process.env.NODE_ENV === 'development'
  7. }]
  8. ]
  9. }

babel.config.js配置

  1. const babelImportPlugin = require('@jomsou/babel-plugin-import')
  2. module.exports = {
  3. "plugins": [
  4. [babelImportPlugin, {
  5. libName: "antd",
  6. libPath: "lib",
  7. disable: process.env.NODE_ENV === 'development'
  8. }]
  9. ]
  10. }

webpack配置

  1. const babelImportPlugin = require('@jomsou/babel-plugin-import')
  2. rules: [
  3. {
  4. test: /\.js$/, use: {
  5. loader: 'babel-loader',
  6. options: {
  7. presets: [
  8. 'env',
  9. 'react'
  10. ],
  11. plugins: [
  12. [babelImportPlugin, {
  13. libName: 'antd',
  14. libPath: 'lib',
  15. disable: process.env.NODE_ENV === 'development'
  16. }]
  17. ]
  18. }
  19. }, exclude: /node_modules/}
  20. ]
  21. }

antd

前:

008

后:

009

element-ui

前:

@master/img/babel-plugin-import后.png" alt="">

后:

@master/img/babel-plugin-import前.png" alt="">

更新日志:

  • 2021.03.25 修复已知问题
  • 2020.11.10 完成v1.1.0并加入github actions
  • 2018.10.08 v1.0.0版本

TODO

  • 实现样式按需引入