We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next.js 是一个非常稳定的项目,且总会保持向后兼容。所以我在开发这个插件时,将 Next.js 作为 peerDependencies,并设置了非常宽松的版本要求 "next": ">=11.1.4"。
peerDependencies
"next": ">=11.1.4"
对于 Taro,由于该插件只强依赖 Taro 的接口实现,所以插件未对用户使用的 Taro 版本有任何要求。
这样可以带来这样的好处,用户可以自行选择 Next.js 的版本,升级到某个版本来使用新的功能,解决一些 bug。
但是随着项目的持续,这也会带来这样的问题。
next-with-less
这样看起来,插件严格地限制 Taro 和 Next.js 会是更好的选择,特定版本的插件仅保证对特征 Taro 和 Next.js 的支持,保证插件的稳定性也减少维护成本。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Next.js 是一个非常稳定的项目,且总会保持向后兼容。所以我在开发这个插件时,将 Next.js 作为
peerDependencies
,并设置了非常宽松的版本要求"next": ">=11.1.4"
。对于 Taro,由于该插件只强依赖 Taro 的接口实现,所以插件未对用户使用的 Taro 版本有任何要求。
这样可以带来这样的好处,用户可以自行选择 Next.js 的版本,升级到某个版本来使用新的功能,解决一些 bug。
但是随着项目的持续,这也会带来这样的问题。
next-with-less
并不会保持向后兼容。这样看起来,插件严格地限制 Taro 和 Next.js 会是更好的选择,特定版本的插件仅保证对特征 Taro 和 Next.js 的支持,保证插件的稳定性也减少维护成本。
The text was updated successfully, but these errors were encountered: