如何将使用create-react-app构建的React项目升级到下一个create-react-app版本?

时间:2018-02-11 03:13:23

标签: reactjs create-react-app

我有一个使用create-react-app 1.5构建的React项目。我想为我的React项目获得create-react-app 2.0的功能。

具体来说,我想用这个:https://github.com/facebook/create-react-app/pull/3909

2 个答案:

答案 0 :(得分:13)

基本上,升级create-react-app项目all you need to do is update the react-scripts module to the latest version并更新您的应用以与react-scripts中的任何重大更改兼容。

运行yarn upgrade --latest react-scripts,重建您的应用,除了任何重大变化之外,所有内容都应该或多或少。

答案 1 :(得分:0)

Create React App 分为两个包:

create-react-app 是用于创建新项目的全局命令行实用程序。 react-scripts 是生成的项目(包括这个)中的一个开发依赖项。 当您运行 npx create-react-app my-app 时,它会自动安装最新版本的 Create React App。

如果您之前已通过 npm install -g create-react-app 在全球范围内安装了 create-react-app,请访问 Getting Started 了解当前安装步骤。