有没有人有从Sinopia移植到Nexus 3的过程?我们总是可以在Nexus中代理Sinopia,让它继续运行一年,但我宁愿导入并关闭Sinopia。
提前谢谢你,
戴夫B。
发布于 2017-03-14 04:08:29
生成sinopia tgz文件列表
find $SINOPIA_HOME/storage/ -name "*.tgz" > listoftgzs.txt迭代列表并发布到Nexus 3
while read p; do
echo $p
npm publish $p --registry https://mynexus.hostname.com/repository/npm-internal/
done < listoftgzs.txt我有一些发布失败的地方,我认为这更多地与模块有关,而不是这里的方法。
https://stackoverflow.com/questions/42683394
复制相似问题