把
tailwindcss JIT
思想带入小程序开发吧!
笔者之前写了一个 tailwindcss-miniprogram-preset,可是那个方案不能兼容最广泛的 Just in time
引擎,在写法上也有些变体。
于是笔者又写了一个 weapp-tailwindcss-webpack-plugin
,这是一个 plugin
合集,包含 webpack/vite plugin
,它会同时处理类 wxml
和 wxss
文件,从而我们开发者,不需要更改任何代码,就能让 jit
引擎兼容微信小程序。
此方案可兼容 tailwindcss v2/v3
,webpack v4/v5
,postcss v7/v8
。
随着
@vue/cli-service
v5 版本的发布,uni-app 到时候也会转为webpack5
+postcss8
的组合,到时候,我会升级一下uni-app
的示例,让它从tailwindcss v2 jit
升级到tailwindcss v3 jit
使用方式 | React Demo 项目 | vue2 Demo 项目 | vue3 Demo 项目
配置项 | 类型 | 描述 |
---|---|---|
htmlMatcher | (assetPath:string)=>boolean | 匹配 wxml 等等模板进行处理的方法 |
cssMatcher | (assetPath:string)=>boolean | 匹配 wxss 等等样式文件的方法 |
jsMatcher | (assetPath:string)=>boolean | 匹配 js 文件进行处理的方法,用于 react |
mainCssChunkMatcher | (assetPath:string)=>boolean | 匹配 tailwindcss jit 生成的 css chunk 的方法 |
framework (Taro 特有) | react | vue2 |
customRuleCallback | (node: Postcss.Rule, options: Readonly<RequiredStyleHandlerOptions>) => void | 可根据 Postcss walk 自由定制处理方案的 callback 方法 |
cssPreflight | Record<string,string> | false |
// default 默认:
cssPreflight: {
'box-sizing': 'border-box',
'border-width': '0',
'border-style': 'solid',
'border-color': 'currentColor'
}
// result
// box-sizing: border-box;
// border-width: 0;
// border-style: solid;
// border-color: currentColor
// case 禁用所有
cssPreflight: false
// result
// none
// case 禁用单个属性
cssPreflight: {
'box-sizing': false
}
// border-width: 0;
// border-style: solid;
// border-color: currentColor
// case 更改和添加单个属性
cssPreflight: {
'box-sizing': 'content-box',
'background': 'black'
}
// result
// box-sizing: content-box;
// border-width: 0;
// border-style: solid;
// border-color: currentColor;
// background: black
详见 tailwindcss/using-arbitrary-values 章节 | Sample
js
里写了 tailwindcss
的任意值,为什么没有生效?详见 issue#28
A: 因为这个插件,主要是针对,wxss
,wxml
和 jsx
进行转义的,js
里编写的 string
是不转义的。如果你有这样的需求可以这么写:
import { replaceJs } from 'weapp-tailwindcss-webpack-plugin/replace'
const cardsColor = reactive([
replaceJs('bg-[#4268EA] shadow-indigo-100'),
replaceJs('bg-[#123456] shadow-blue-100')
])
你不用担心把代码都打进来导致体积过大,我在 'weapp-tailwindcss-webpack-plugin/replace' 中,只暴露了 2 个方法,代码体积 1k 左右,esm 格式。
disabled:opacity-50
这类的 tailwindcss
前缀不生效?详见 issue#33,小程序选择器的限制。
假如出现原生组件引入报错的情况,可以参考 issue#35 ,忽略指定目录下的文件,跳过插件处理,比如 uni-app
中的 wxcomponents
。
如何更改?在传入的配置项 cssMatcher
,htmlMatcher
这类中过滤指定目录或文件。
有些用户通过 uni-app
等跨端框架,不止开发成各种小程序,也开发为 H5
,然而 tailwindcss
本身就兼容 H5
了。此时你需要更改配置,我们以 uni-app
为例:
const isH5 = process.env.UNI_PLATFORM === 'h5';
// 然后在 h5 环境下把 webpack plugin 和 postcss for weapp 给禁用掉
// 我们以 uni-app-vue3-vite 这个 demo为例
// vite.config.ts
import { defineConfig } from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
import { ViteWeappTailwindcssPlugin as vwt } from 'weapp-tailwindcss-webpack-plugin';
// vite 插件配置
const vitePlugins = [uni()];
!isH5 && vitePlugins.push(vwt());
export default defineConfig({
plugins: vitePlugins
});
// postcss 配置
// 假如不起作用,请使用内联postcss
const isH5 = process.env.UNI_PLATFORM === 'h5';
const plugins = [require('autoprefixer')(), require('tailwindcss')()];
if (!isH5) {
plugins.push(
require('postcss-rem-to-responsive-pixel')({
rootValue: 32,
propList: ['*'],
transformUnit: 'rpx'
})
);
plugins.push(require('weapp-tailwindcss-webpack-plugin/postcss')());
}
module.exports = {
plugins
};
uni-app-vite-vue3-tailwind-vscode-template
uni-app-vue3-tailwind-vscode-template
uni-app-vue2-tailwind-vscode-template
weapp-native-mina-tailwindcss-template
tailwindcss-miniprogram-preset
目前这个插件正在快速的开发中,如果遇到 Bug
或者想提出 Issue