@@ -89,29 +89,40 @@ export function monkeyPatchForSupportingCustomUnitV3(rootDir: string, options?:
89
89
90
90
// "cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"
91
91
92
+ interface V4GuessFile {
93
+ code : string
94
+ hasPatched : boolean
95
+ file : string
96
+ matches : RegExpMatchArray
97
+ }
98
+
92
99
export function monkeyPatchForSupportingCustomUnitV4 ( rootDir : string , options ?: Partial < ILengthUnitsPatchOptions > ) {
93
100
const opts = defuOverrideArray < Required < ILengthUnitsPatchOptions > , ILengthUnitsPatchOptions [ ] > ( options as Required < ILengthUnitsPatchOptions > , {
94
101
units : [ 'rpx' ] ,
95
102
overwrite : true ,
96
103
} )
97
104
const distPath = path . resolve ( rootDir , 'dist' )
98
105
const list = fs . readdirSync ( distPath )
99
- const chunks = list . filter ( x => x . startsWith ( 'chunk-' ) )
106
+ // .mjs + .js
107
+ const chunks = list . filter ( x => x . endsWith ( 'js' ) )
100
108
const guessUnitStart = / \[ \s * [ " ' ] c m [ " ' ] , \s * [ " ' ] m m [ " ' ] , [ \w , " ] + \] /
101
- let code
102
- let matches : RegExpMatchArray | null = null
103
- let guessFile : string | undefined
104
- for ( const chunkName of chunks ) {
105
- guessFile = path . join ( distPath , chunkName )
106
- code = fs . readFileSync ( guessFile , 'utf8' )
107
- const res = guessUnitStart . exec ( code )
108
- if ( res ) {
109
- matches = res
110
- break
109
+ const guessFiles : V4GuessFile [ ] = chunks . reduce < V4GuessFile [ ] > ( ( acc , chunkName ) => {
110
+ const guessFile = path . join ( distPath , chunkName )
111
+ const code = fs . readFileSync ( guessFile , 'utf8' )
112
+ const matches = guessUnitStart . exec ( code )
113
+ if ( matches && code ) {
114
+ acc . push ( {
115
+ code,
116
+ hasPatched : false ,
117
+ file : guessFile ,
118
+ matches,
119
+ } )
111
120
}
112
- }
113
- let hasPatched = false
114
- if ( matches && code ) {
121
+ return acc
122
+ } , [ ] )
123
+
124
+ for ( const item of guessFiles ) {
125
+ const { matches, code, file } = item
115
126
const match = matches [ 0 ]
116
127
const ast = parse ( match , {
117
128
sourceType : 'unambiguous' ,
@@ -121,40 +132,40 @@ export function monkeyPatchForSupportingCustomUnitV4(rootDir: string, options?:
121
132
ArrayExpression ( path ) {
122
133
for ( const unit of opts . units ) {
123
134
if ( path . node . elements . some ( x => t . isStringLiteral ( x ) && x . value === unit ) ) {
124
- hasPatched = true
135
+ item . hasPatched = true
125
136
break
126
137
}
127
138
path . node . elements . push ( t . stringLiteral ( unit ) )
128
139
}
129
140
} ,
130
141
} )
131
- if ( hasPatched ) {
132
- return {
133
- code,
134
- hasPatched,
135
- }
142
+ if ( item . hasPatched ) {
143
+ continue
136
144
}
137
145
const { code : replacement } = generate ( ast , {
138
146
minified : true ,
139
147
} )
140
- code = spliceChangesIntoString ( code , [
148
+ // new code
149
+ item . code = spliceChangesIntoString ( code , [
141
150
{
142
151
start : matches . index as number ,
143
152
end : matches . index as number + match . length ,
144
153
replacement : replacement . endsWith ( ';' ) ? replacement . slice ( 0 , - 1 ) : replacement ,
145
154
} ,
146
155
] )
147
- if ( opts . overwrite && guessFile ) {
148
- fs . writeFileSync ( guessFile , code , {
156
+
157
+ if ( opts . overwrite && file ) {
158
+ fs . writeFileSync ( file , item . code , {
149
159
encoding : 'utf8' ,
150
160
} )
151
- logger . success ( 'patch tailwindcss for custom length unit successfully!' )
152
161
}
153
162
}
163
+ if ( guessFiles . some ( x => ! x . hasPatched ) ) {
164
+ logger . success ( 'patch tailwindcss for custom length unit successfully!' )
165
+ }
154
166
155
167
return {
156
- code,
157
- hasPatched,
168
+ files : guessFiles ,
158
169
}
159
170
// /\["cm","mm"/
160
171
}
0 commit comments