1.0.14 • Published 4 years ago

babel-plugin-wind v1.0.14

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

babel-plugin-wind

按需引用 wind 中的组件

安装

npm i -D babel-plugin-wind

使用

.bablerc

{
  "plugins": [
    "babel-plugin-wind"
  ]
}

babel-loader

Webpack

module.exports = {
  module: {
    rules: [
      {
        test: /\.jsx?$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader',
          options: {
            plugins: [
              'babel-plugin-wind'
            ]
          }
        }
      }
    ]
  }
}