-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.ts
More file actions
198 lines (187 loc) · 5.16 KB
/
index.ts
File metadata and controls
198 lines (187 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
import type {
PostCSSLoaderOptions,
RsbuildPlugin,
Rspack,
} from '@rsbuild/core';
import { TailwindRspackPlugin } from './TailwindCSSRspackPlugin.js';
import type { FilterPattern } from './TailwindCSSRspackPlugin.js';
export type { FilterPattern };
export interface PluginTailwindCSSOptions {
/**
* The path to the configuration of Tailwind CSS.
*
* @remarks
*
* The default value is `tailwind.config.js`.
*
* @example
*
* Use relative path:
*
* ```js
* // rsbuild.config.ts
* import { pluginTailwindCSS } from '@byted-lynx/plugin-tailwindcss'
*
* export default {
* plugins: [
* pluginTailwindCSS({
* config: './config/tailwind.config.js',
* }),
* ],
* }
* ```
*
* @example
*
* Use absolute path:
*
* ```js
* // rsbuild.config.ts
* import path from 'node:path'
* import { fileURLToPath } from 'node:url'
*
* import { pluginTailwindCSS } from 'rsbuild-plugin-tailwindcss'
*
* const __dirname = path.dirname(fileURLToPath(import.meta.url))
*
* export default {
* plugins: [
* pluginTailwindCSS({
* config: path.resolve(__dirname, './config/tailwind.config.js'),
* }),
* ],
* }
* ```
*/
config?: string;
/**
* The modules to be excluded using `picomatch` patterns.
*
* If {@link include} is omitted or empty,
* all modules that do not match any of the {@link exclude} patterns will be included.
* Otherwise, only modules that match one or more of the {@link include} patterns
* and do not match any of the {@link exclude} patterns will be included.
*
* @example
*
* ```js
* // rsbuild.config.ts
* import { pluginTailwindCSS } from '@byted-lynx/plugin-tailwindcss'
*
* export default {
* plugins: [
* pluginTailwindCSS({
* exclude: [
* './src/store/**',
* /[\\/]node_modules[\\/]/,
* ],
* }),
* ],
* }
* ```
*/
exclude?: FilterPattern | undefined;
/**
* The modules to be included using `picomatch` patterns.
*
* If {@link include} is omitted or empty,
* all modules that do not match any of the {@link exclude} patterns will be included.
* Otherwise, only modules that match one or more of the {@link include} patterns
* and do not match any of the {@link exclude} patterns will be included.
*
* @example
*
* ```js
* // rsbuild.config.ts
* import { pluginTailwindCSS } from '@byted-lynx/plugin-tailwindcss'
*
* export default {
* plugins: [
* pluginTailwindCSS({
* include: [
* /\.[jt]sx?/,
* ],
* }),
* ],
* }
* ```
*/
include?: FilterPattern | undefined;
/**
* Setting Tailwind config path for different entries
*
* {@link multipleConfig} can be configured as an object where the key is the entryName and the value is the config path.
* If the key cannot be found, it will fallback to {@link config} , which is the default config path.
*
* @example
*
* ```js
* // rspack.config.js
* import { TailwindRspackPlugin } from 'rsbuild-plugin-tailwindcss'
*
* export default {
* plugins: [
* new TailwindRspackPlugin({
* multipleConfig: {
* index: './config/tailwind.index.config.js',
* main: './config/tailwind.main.config.js'
* },
* }),
* ],
* }
* ```
*/
multipleConfig?: Record<string, string> | undefined;
}
export const pluginTailwindCSS = (
options: PluginTailwindCSSOptions = {},
): RsbuildPlugin => ({
name: 'rsbuild:tailwindcss',
setup(api) {
let postcssOptions: Exclude<
PostCSSLoaderOptions['postcssOptions'],
(loaderContext: Rspack.LoaderContext) => void
>;
api.modifyRsbuildConfig({
order: 'post',
handler(config, { mergeRsbuildConfig }) {
return mergeRsbuildConfig(config, {
tools: {
postcss(config) {
if (typeof config.postcssOptions === 'function') {
throw new Error(
'pluginTailwindCSS does not support using `tools.postcss` as function',
);
}
if (config.postcssOptions) {
// Remove `tailwindcss` from `postcssOptions`
// to avoid `@tailwind` being transformed by `postcss-loader`.
config.postcssOptions.plugins =
config.postcssOptions.plugins?.filter(
(p) =>
'postcssPlugin' in p && p.postcssPlugin !== 'tailwindcss',
) ?? [];
postcssOptions = config.postcssOptions;
}
},
},
});
},
});
api.modifyBundlerChain({
order: 'post',
handler(chain) {
chain.plugin('tailwindcss').use(TailwindRspackPlugin, [
{
config: options.config ?? 'tailwind.config.js',
include: options.include,
exclude: options.exclude,
multipleConfig: options.multipleConfig,
postcssOptions,
},
]);
},
});
},
});
export { TailwindRspackPlugin } from './TailwindCSSRspackPlugin.js';