2015-09-13 10 views
5

npmを使用して「react-addons-transition-group」をインストールする際に問題があります。反応のウェブサイトによると:、反応-アドオンクローン-と、小道具、反応-アドオンを作成フラグメントを、反応-アドオン-CSS-遷移グループ:react-addons-transition-groupのインストール中に問題が発生しました

のアドオンは、同様のパッケージを分離するために移動しました反応付加物 - 浅い比較、反応 - 付加物 - 遷移 - グループ、反応 - 付加物 - 更新、反応 - 反応 - 付加 - 連結 - 状態 - 混合反応、反応 - ドーム。

npm install react-addons-transition-group 
npm install react-addons-css-transition-group 

が、私は取得しています:: - https://facebook.github.io/react/blog/2015/07/03/react-v0.14-beta-1.html

私が試してみました

npm ERR! notarget No compatible version found: [email protected]'*' 
npm ERR! notarget Valid install targets: 
npm ERR! notarget ["0.14.0-beta1","0.14.0-beta2","0.14.0-beta3","0.14.0-rc1"] 
npm ERR! notarget 
npm ERR! notarget This is most likely not a problem with npm itself. 
npm ERR! notarget In most cases you or one of your dependencies are requesting 
npm ERR! notarget a package version that doesn't exist. 

私が使用しています:

"react": "^0.14.0-rc1", 
"react-dom": "0.14.0-rc1" 

はので、私はなぜそれがわかりませんエラーをスローしています。 0.14.0-rc1は互換性のあるバージョンのリストにあります。

マイNPMのバージョンは2.11.3と0.12.7ノード

これを引き起こしている可能性がどのような任意のアイデアですか?

答えて

6

この不具合は[email protected]に修正されました。基本的に、[email protected]は、プレリリースが*セムバレンジを満たすというバグを修正しました。 [email protected]にこのアップデートが付属した場合、インストールするバージョンをnpmに明示的に伝えていない限り、何らかの理由でプレリリースがあるパッケージreact-addons-transition-groupnpmによってインストールされなくなりました。

問題追跡チケットはnpm/npm#8855です。 npmのアップデートガイドはhereです。

関連する問題