2.0.1 • Published 4 years ago
lerna-command-toc v2.0.1
lerna-command-toc
lerna command for generate toc of packages in markdown
- Input (
README.md)
# my-package
## Packages
## Other- Output (After run
lerna toc)
# my-package
## Packages
- [package-a](packages/a) - a description
- [package-b](packages/b) - b description
## OtherInstallation
npm install lerna-command-toc lerna-cli -D
# or use yarn
yarn add lerna-command-toc lerna-cli --devUsage
lerna.json
{
"extendCommands": ["lerna-command-toc"],
"command": {
"toc": {}
}
}- Run command
lerna toc --help
lerna toc- We recommend use
lerna-command-tocwithpre-commentgit hook
// package.json
{
husky: {
hooks: {
'pre-commit': 'npx lerna toc && git add README.md'
}
}
}Contributing
- Fork it!
- Create your new branch:
git checkout -b feature-neworgit checkout -b fix-which-bug - Start your magic work now
- Make sure npm test passes
- Commit your changes:
git commit -am 'feat: some description (close #123)'orgit commit -am 'fix: some description (fix #123)' - Push to the branch:
git push - Submit a pull request :)
Authors
This library is written and maintained by imcuttle, imcuttle@163.com.
License
MIT - imcuttle 🐟