2016-06-21 19 views

答えて

0

はい、npmを避けることができます。 GithubやBitbucket、あるいはおそらくどんなgitベースのシステムでもコードをホストすることができます。

オプションでは、特定の参照、この

ようになります。この

ember install git+ssh://[email protected]:path-to-git-repository.git#commit-id 

更新package.jsonのようにコミットできコマンドこの

ember install git+ssh://[email protected]:path-to-git-repository.git 

ようになりインストールpackage.json

"devDependencies": { 
    "your-package-name": "git+ssh://[email protected]:path-to-git-repository.git", 
} 
関連する問題