有没有人有从Sinopia移植到Nexus 3的过程?我们总是可以在Nexus代理Sinopia并让它继续运行一年,但我宁愿进口并关闭Sinopia。
提前致谢,
Dave B。
答案 0 :(得分:1)
生成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
我有一些未能发布,我认为这与模块有关,而不是这里的方法。