是否有明确的方法来更新使用 preact-cli 创建的 preact 应用程序?
Is there a defined way to update preact app that was created with preact-cli?
我正在研究 preact 及其相关工具,以获得功能有限的应用程序,该应用程序应该会在几周内投入生产。
我担心的是未来的维护:如果我使用 preact-cli 从模板创建我的应用程序,有没有一种简单的方法可以在模板升级一段时间后使用最新的升级和配置更改来更新我的应用程序?
我正在寻找类似于 create-react-app 更新说明的文档页面 https://create-react-app.dev/docs/updating-to-new-releases/
没有自动应用新更改的方法,假设这就是您要找的东西——甚至 create-react-app
也没有。从文档页面引用这段话:
To update an existing project to a new version of react-scripts
, open the changelog, find the version you’re currently on (check package.json
in this folder if you’re not sure), and apply the migration instructions for the newer versions.
Preact 还提供迁移指南。一旦你的项目搭建好了,就没有简单的方法来获取最新的更新,但你可以按照他们的文档(例如从 v8 升级):
https://preactjs.com/guide/v10/upgrade-guide/
如果您发现自己想要进行这些升级,一种方法是生成一个新的独立项目,然后手动应用这些更改;阅读他们的指南可能仍然是最好的方法。
我正在研究 preact 及其相关工具,以获得功能有限的应用程序,该应用程序应该会在几周内投入生产。
我担心的是未来的维护:如果我使用 preact-cli 从模板创建我的应用程序,有没有一种简单的方法可以在模板升级一段时间后使用最新的升级和配置更改来更新我的应用程序?
我正在寻找类似于 create-react-app 更新说明的文档页面 https://create-react-app.dev/docs/updating-to-new-releases/
没有自动应用新更改的方法,假设这就是您要找的东西——甚至 create-react-app
也没有。从文档页面引用这段话:
To update an existing project to a new version of
react-scripts
, open the changelog, find the version you’re currently on (checkpackage.json
in this folder if you’re not sure), and apply the migration instructions for the newer versions.
Preact 还提供迁移指南。一旦你的项目搭建好了,就没有简单的方法来获取最新的更新,但你可以按照他们的文档(例如从 v8 升级):
https://preactjs.com/guide/v10/upgrade-guide/
如果您发现自己想要进行这些升级,一种方法是生成一个新的独立项目,然后手动应用这些更改;阅读他们的指南可能仍然是最好的方法。