fix: 优化plugin-model的错误日志

This commit is contained in:
万纯 2021-01-28 15:44:22 +08:00
parent 286040d678
commit 9fd4fff3e2

View File

@ -141,7 +141,7 @@ export const genModels = (imports, absSrcPath) => {
const models = sort(raw);
if (checkDuplicates(contents.map(ele => ele.namespace))) {
throw Error('umi: models 中包含重复的 namespace');
throw Error('plugin-model: models 中包含重复的 namespace');
}
return raw.sort(
(a, b) => models.indexOf(a.namespace) - models.indexOf(b.namespace)