Pana / nrm

NPM registry manager, fast switch between different registries: npm, cnpm, nj, taobao
MIT License
2.81k stars 247 forks source link

nrm 当前源不显示标记 * #145

Open ZYQIO opened 1 year ago

ZYQIO commented 1 year ago

nrm的cli.js 的141行 && 换成 ||

zjtt commented 1 year ago

nrm的cli.js

if (hasOwnProperty(customRegistries, name) && (name in registries || customRegistries[name].registry === registry.registry)) {
    registry[FIELD_IS_CURRENT] = true;
    customRegistries[name] = registry;
}

换成

if (hasOwnProperty(customRegistries, name) || (name in registries || customRegistries[name].registry === registry.registry)) {
    registry[FIELD_IS_CURRENT] = true;
    customRegistries[name] = registry;
}
raohuiyong commented 1 year ago

最新版本似乎修复了

zjtt commented 1 year ago

收到啦,谢谢