生成 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
我有一些未能发布,我认为这与模块有关,而不是与此处的方法有关。