-
Notifications
You must be signed in to change notification settings - Fork 7
Conversation
luhc228
commented
Aug 11, 2022
•
edited
Loading
edited
- 状态管理方案 #395 (comment)
- 更新 README
- 添加部分注释说明
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov Report
@@ Coverage Diff @@
## release-next #435 +/- ##
================================================
+ Coverage 82.20% 82.23% +0.02%
================================================
Files 87 87
Lines 7448 7448
Branches 941 941
================================================
+ Hits 6123 6125 +2
+ Misses 1319 1317 -2
Partials 6 6
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -16,6 +16,7 @@ | |||
"@types/react": "^18.0.0", | |||
"@types/react-dom": "^18.0.0", | |||
"browserslist": "^4.19.3", | |||
"regenerator-runtime": "^0.13.9" | |||
"regenerator-runtime": "^0.13.9", | |||
"tslib": "^2.4.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
为啥需要这个
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
所以项目依赖中你会推荐把 tslib 也默认加进去吗
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好多地方都会用到, ts 优先的话我也建议脚手架默认加 tslib 在 devDep
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
或者也可以默认先不依赖 tslib,把可能遇到的错误以及解决方式(安装一下 tslib)放在 faq 中
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里不用增加复杂度了, 直接脚手架里依赖上吧 (开箱即用)
可以参考 #519 支持下消费 app data |