https://github.com/isthatcentered/unicorn
Monorepo containing my daily helpers (typescript lib scaffold cli, react lib scaffold cli, test utils, ...)
https://github.com/isthatcentered/unicorn
Last synced: 4 months ago
JSON representation
Monorepo containing my daily helpers (typescript lib scaffold cli, react lib scaffold cli, test utils, ...)
- Host: GitHub
- URL: https://github.com/isthatcentered/unicorn
- Owner: isthatcentered
- Created: 2019-11-01T18:04:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T17:54:09.000Z (over 3 years ago)
- Last Synced: 2025-10-22T09:36:58.946Z (7 months ago)
- Language: JavaScript
- Size: 4.84 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 79
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://lerna.js.org/)
[](http://commitizen.github.io/cz-cli/)
## [Lerna](https://github.com/lerna/lerna) TLDR;
### Useful commands
- `$ yarn lerna --help`
- `$ yarn lerna {command} --help`
- `$ lerna run watch --ignore package-{1,2,5} --include-dependencies --stream` runs watch command in all packages [filtering options](https://www.npmjs.com/package/@lerna/filter-options)
- `$ yarn lerna init`
- `$ yarn lerna bootstrap` installs dependencies for all packages
- `$ yarn lerna publish`
### Tools
- [Lerna wizard](https://github.com/szarouski/lerna-wizard)
### Independant mode
Each package has it's own version
```json
// lerna.json
{
// ...
"version": "independant"
}
```