### Discussed in https://github.com/DTStack/molecule/discussions/681 <div type='discussions-op-text'> <sup>Originally posted by **wewoor** November 24, 2021</sup> 拆分 src 源码为多个子包,后期可单独发布 ui、react 等不同的包,目录结构类似: ```bash ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README-koKR.md ├── README-zhCN.md ├── README.md ├── babel.config.json ├── build ├── codecov.yml ├── commitlint.config.js ├── coverage ├── docs ├── jest.config.js ├── mock ├── node_modules ├── package.json ├── packages ├── common ├── react ├── ui ├── ide ├── stories ├── test ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.json ├── website └── yarn.lock ``` </div>