Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ssdmtank/smart-taro-tools
https://github.com/ssdmtank/smart-taro-tools
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ssdmtank/smart-taro-tools
- Owner: ssdmtank
- Created: 2022-06-24T08:46:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-24T09:25:30.000Z (over 2 years ago)
- Last Synced: 2023-03-04T07:32:01.213Z (almost 2 years ago)
- Language: TypeScript
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 安装外部包
```bash
# 给package所有项目安装
lerna add XX
# 给指定目录
lerna add XX packages/hooks
# 增加内部模块之间的依赖
lerna add XXX --scope XX# 安装依赖
lerna bootstrap
# 清空依赖
lerna clean
```### 调试
建议用yalc
```bash
# 全局安装
yarn global add yalc
# 在工具包执行
cd /packages/hooks
yalc push --changed --pure
# 在使用包目录
yalc add 包名
# 移出包
yalc remove -all
```