0.2.1 • Published 11 months ago

esbuild-plugin-postcss v0.2.1

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

esbuild-plugin-postcss

介绍

esbuild的postcss插件用于支持ts模块中支持引入css

使用说明

npm i esbuild-plugin-postcss --save-dev

.esbuildrc.js

const PluginPostCSS = require('esbuild-plugin-postcss').default
esbuild({
    ...
    plugins: [
        PluginPostCSS({
            // 根据less文件生成.d.ts文件 (from v0.1.1)
            declaration: true,
        })
    ],
    loader: {
        '.tsx': 'tsx',
        '.ts': 'ts',
    },
})

index.less

.index {
    background-color: red;
    font: 500 24px/48px "Microsoft Yahei";
    .tab {
        background-color: black;
        color: bisque;
    }
}

App.tsx

import style from "./style.less"

const App = () => {
    return <div className={style.index}>
        <div>
            <span>标题</span>
        </div>
        <div className={style.tab}>tab1</div>
        <div className={style.tab}>tab2</div>
        <div className={style.tab}>tab3</div>
    </div>
}

PS: typescript 支持 .less资源可能需要配置全局module

declare module "*.less" {
    const content: Record<string, string>;
    export default content;
}
0.2.1

11 months ago

0.2.0

1 year ago

0.1.4

1 year ago

0.1.0

2 years ago

0.1.1

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago