このトピックを長い間検索してきましたが、現在、すべてのソリューションと例は git で機能しますが、Mercurialの直接的なソリューションはありません。
似たようなリンクのどこかから取られた実際の例。
"private": true
to your package.json
Then to reference private npm module in package.json
{
"name": "myapp",
"dependencies": {
"private-repo": "git+ssh://git@github.com:myaccount/myprivate.git#v1.0.0",
}
}
公式のnpmページから読んだように、これはすべてgit https://docs.npmjs.com/files/package.json#git-urls-as-dependenciesでのみ機能します
では、Mercurial で同じことを行う方法、または現在 Git でのみ可能と思われる方法は?