File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ export type { TailwindRspackPluginOptions };
179179class TailwindRspackPluginImpl {
180180 name = 'TailwindRspackPlugin' ;
181181
182- static # postcssProcessorCache = new Map <
182+ postcssProcessorCache = new Map <
183183 /** entryName */ string ,
184184 [ entryModules : ReadonlySet < string > , Processor ]
185185 > ( ) ;
@@ -209,8 +209,7 @@ class TailwindRspackPluginImpl {
209209 return ;
210210 }
211211
212- const cache =
213- TailwindRspackPluginImpl . #postcssProcessorCache. get ( entryName ) ;
212+ const cache = this . postcssProcessorCache . get ( entryName ) ;
214213 if ( compiler . modifiedFiles ?. size && cache ) {
215214 const [ cachedEntryModules , cachedPostcssProcessor ] = cache ;
216215 if ( isSubsetOf ( compiler . modifiedFiles , cachedEntryModules ) ) {
@@ -268,7 +267,7 @@ class TailwindRspackPluginImpl {
268267 ...( options . postcssOptions ?. plugins ?? [ ] ) ,
269268 ] ) ;
270269
271- TailwindRspackPluginImpl . # postcssProcessorCache. set ( entryName , [
270+ this . postcssProcessorCache . set ( entryName , [
272271 entryModules ,
273272 processor ,
274273 ] ) ;
You can’t perform that action at this time.
0 commit comments