私が入力したときcreate-react-app my-app
、私の端末でコマンドを、それが仕事に表示されます-私は、というメッセージを取得しますが、そのプロセスの終わりに成功したなど、すべてのライブラリをダウンロードしますtemplate was not provided
。
入力
user@users-MacBook-Pro-2 Desktop% create-react-app my-app
出力
Creating a new React app in /Users/user/Desktop/my-app.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...
..... nothing out of the ordinary here .....
✨ Done in 27.28s.
A template was not provided. This is likely because you're using an outdated version of create-react-app.
Please note that global installs of create-react-app are no longer supported.
のpackage.jsonでmy-app
:
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.0" <-- up-to-date
}
CRA変更ログをチェックアウトしたところ、カスタムテンプレートのサポートが追加されたようですが、コマンドcreate-react-app my-app
が変更されたようには見えません。
ここで何が起こっているのでしょうか?
yarn global upgrade create-react-app
yarn create react-app my-app
locate create-react-app
たのcreate-react-app
は、名前に含まれているすべてのディレクトリを実行して削除することでした。そうして初めてnpx create-react-app
ようやく、私にとっては再び正常に機能するようになりました。