UNPKG

antd-tools

Version:
11 lines (9 loc) 277 B
function rewriteSource(t, path, libDir) { if (libDir === 'dist') { const matches = path.node.source.value.match(new RegExp('^antd(-mobile)?$')); if (matches) { path.node.source.value = `../../../dist/${matches[0]}`; } } } module.exports = rewriteSource;