Skip to content

Commit e7f9c6f

Browse files
committed
fix: cjs import from user project
1 parent 79b326a commit e7f9c6f

File tree

7 files changed

+138
-31
lines changed

7 files changed

+138
-31
lines changed

.changeset/silly-showers-hug.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tailwindcss-patch": patch
3+
---
4+
5+
fix: cjs import from user project

packages/tailwindcss-patch/src/core/patches/supportCustomUnits/index.ts

+37-26
Original file line numberDiff line numberDiff line change
@@ -89,29 +89,40 @@ export function monkeyPatchForSupportingCustomUnitV3(rootDir: string, options?:
8989

9090
// "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"
9191

92+
interface V4GuessFile {
93+
code: string
94+
hasPatched: boolean
95+
file: string
96+
matches: RegExpMatchArray
97+
}
98+
9299
export function monkeyPatchForSupportingCustomUnitV4(rootDir: string, options?: Partial<ILengthUnitsPatchOptions>) {
93100
const opts = defuOverrideArray<Required<ILengthUnitsPatchOptions>, ILengthUnitsPatchOptions[]>(options as Required<ILengthUnitsPatchOptions>, {
94101
units: ['rpx'],
95102
overwrite: true,
96103
})
97104
const distPath = path.resolve(rootDir, 'dist')
98105
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'))
100108
const guessUnitStart = /\[\s*["']cm["'],\s*["']mm["'],[\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+
})
111120
}
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
115126
const match = matches[0]
116127
const ast = parse(match, {
117128
sourceType: 'unambiguous',
@@ -121,40 +132,40 @@ export function monkeyPatchForSupportingCustomUnitV4(rootDir: string, options?:
121132
ArrayExpression(path) {
122133
for (const unit of opts.units) {
123134
if (path.node.elements.some(x => t.isStringLiteral(x) && x.value === unit)) {
124-
hasPatched = true
135+
item.hasPatched = true
125136
break
126137
}
127138
path.node.elements.push(t.stringLiteral(unit))
128139
}
129140
},
130141
})
131-
if (hasPatched) {
132-
return {
133-
code,
134-
hasPatched,
135-
}
142+
if (item.hasPatched) {
143+
continue
136144
}
137145
const { code: replacement } = generate(ast, {
138146
minified: true,
139147
})
140-
code = spliceChangesIntoString(code, [
148+
// new code
149+
item.code = spliceChangesIntoString(code, [
141150
{
142151
start: matches.index as number,
143152
end: matches.index as number + match.length,
144153
replacement: replacement.endsWith(';') ? replacement.slice(0, -1) : replacement,
145154
},
146155
])
147-
if (opts.overwrite && guessFile) {
148-
fs.writeFileSync(guessFile, code, {
156+
157+
if (opts.overwrite && file) {
158+
fs.writeFileSync(file, item.code, {
149159
encoding: 'utf8',
150160
})
151-
logger.success('patch tailwindcss for custom length unit successfully!')
152161
}
153162
}
163+
if (guessFiles.some(x => !x.hasPatched)) {
164+
logger.success('patch tailwindcss for custom length unit successfully!')
165+
}
154166

155167
return {
156-
code,
157-
hasPatched,
168+
files: guessFiles,
158169
}
159170
// /\["cm","mm"/
160171
}

packages/tailwindcss-patch/test/__snapshots__/patch.test.ts.snap

+54-2
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
var K = ["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","rpx"];,
1+
var K = ["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","rpx"],
22
Y = new RegExp(`^${g.source}(${K.join("|")})$`);

packages/tailwindcss-patch/test/fixtures/v4/patch/dist/default-theme.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tailwindcss-patch/test/fixtures/v4/patch/dist/lib.js

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tailwindcss-patch/test/patch.test.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ import { fixturesRoot } from './utils'
55
describe('patch', () => {
66
describe('monkeyPatchForSupportingCustomUnitV4', () => {
77
it('should patch v4', () => {
8-
const { code } = monkeyPatchForSupportingCustomUnitV4(path.resolve(fixturesRoot, 'v4/patch'), {
8+
const { files } = monkeyPatchForSupportingCustomUnitV4(path.resolve(fixturesRoot, 'v4/patch'), {
99

1010
})
11-
expect(code).toMatchSnapshot()
11+
expect(files.map((x) => {
12+
return {
13+
code: x.code,
14+
hasPatched: x.hasPatched,
15+
}
16+
})).toMatchSnapshot()
1217
})
1318
})
1419
})

0 commit comments

Comments
 (0)