Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ssdmtank/smart-taro
https://github.com/ssdmtank/smart-taro
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ssdmtank/smart-taro
- Owner: ssdmtank
- License: mit
- Created: 2021-12-16T14:00:15.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-16T01:59:23.000Z (over 2 years ago)
- Last Synced: 2024-12-09T01:40:07.810Z (about 1 month ago)
- Language: TypeScript
- Size: 1.48 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# smart-taro
参考 https://juejin.cn/post/7074111715507437598
```
yarn create @umijs/dumi-lib --site
lerna init// lerna.json
{
...
"npmClient": "yarn",
"useWorkspaces": true, // 使用yarn workspaces
"version": "independent" // 使用独立版本
}// package.json
{
...
"workspaces": ["packages/*"],
}// 删除示例
rm -rf src// 创建包
lerna create smart-taro-hooks
lerna create smart-taro-appyarn
yarn start
```