element-plus/build/rollup.plugin.entry.ts
jeremywu ccaddca6b4
fix(build): full bundle transform error (#3504)
- Prevent transformer to transform @element-plus/icons
2021-09-19 20:23:00 +08:00

24 lines
583 B
TypeScript

import path from 'path'
import type { Plugin } from 'rollup'
export default function entryPlugin(): Plugin {
return {
name: 'element-plus-entry-plugin',
transform(code, id) {
if (id.includes('packages')) {
return {
code: code.replace(
/@element-plus\/(components|directives|utils|hooks|tokens|locale)/g,
`${path.relative(
path.dirname(id),
path.resolve(__dirname, '../packages')
)}/$1`
),
map: null,
}
}
return { code, map: null }
},
}
}