1.0.1 • Published 7 months ago

@ls-design/rollup-plugin-css-variable v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

用于自定义map传入的变量替换, 服务于@ls-design/ui

⚙️ 安装

npm install @ls-design/rollup-plugin-css-variable

🚀 使用

// rollup.config.ts

import { defineConfig } from 'rollup';
import cssVariable from '@ls-design/rollup-plugin-css-variable';
import variableMap from './global-css';


export default defineConfig({
  plugins: [
    variableMap, // 对象形式 { a: '#ccc' }
    prefix: 'ls-', // 识别到前缀替换,成上面variableMap的value
  ],
  ....
})
1.0.1

7 months ago