我有一个用create-react-app
1.5构建的 React 项目。我想create-react-app
为我的 React 项目获得2.0的功能。
具体我想用这个:https : //github.com/facebook/create-react-app/pull/3909
我有一个用create-react-app
1.5构建的 React 项目。我想create-react-app
为我的 React 项目获得2.0的功能。
具体我想用这个:https : //github.com/facebook/create-react-app/pull/3909
基本上,要升级create-react-app
项目,您需要做的就是将react-scripts
module更新到最新版本并更新您的应用程序以兼容react-scripts
.
运行yarn upgrade --latest react-scripts
,重建你的应用程序,一切都应该或多或少地工作,除非有任何破坏性的变化。
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,请访问入门以了解当前的安装步骤。