mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-21 02:50:11 +08:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
import through2 from 'through2'
|
|
|
|
const rewriter = (rewriteTo = '../..') => {
|
|
return through2.obj(function(file, _, cb) {
|
|
const compIdentifier = new RegExp('@element-plus', 'g')
|
|
|
|
file.contents = Buffer.from(
|
|
file.contents
|
|
.toString()
|
|
.replace(compIdentifier, rewriteTo),
|
|
)
|
|
cb(null, file)
|
|
})
|
|
}
|
|
|
|
export default rewriter
|