icestark
icestark copied to clipboard
[RFC] 从 core 拆离与框架相关的代码
背景
Core 中冗余与 React 框架有关的组件,<AppRouter /> 、<AppRoute />、<AppLink /> 等。导致其他框架的用户需要从 lib 下引入:
import start from '@ice/stark/lib/start';
// ...
方案
拆分相关逻辑进不同的 NPM 包:
- @ice/stark - 框架无关 api
- @ice/stark-react - 和 React 框架有关的 api
- @ice/stark-vue - 和 vue 框架有关的 api