https://github.com/leboncoin/frontend-web-tools
A set of tools to ease the everyday work of the frontend developer
https://github.com/leboncoin/frontend-web-tools
leboncoin lerna npm tool
Last synced: about 1 year ago
JSON representation
A set of tools to ease the everyday work of the frontend developer
- Host: GitHub
- URL: https://github.com/leboncoin/frontend-web-tools
- Owner: leboncoin
- Created: 2018-06-11T14:37:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-19T00:16:46.000Z (over 1 year ago)
- Last Synced: 2025-04-10T10:47:02.447Z (about 1 year ago)
- Topics: leboncoin, lerna, npm, tool
- Language: JavaScript
- Homepage:
- Size: 847 KB
- Stars: 6
- Watchers: 12
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# frontend-web-tools
A set of tools to ease the everyday work of the frontend developer.
## Multi-package monorepo workflow
The multi-package monorepo allows:
* Having the code source in one place (the git repository) for easier navigation and editing
* Publishing of packages with a command line tool, in our case [lerna](https://lerna.js.org/):
```
# Install lerna globally
npm install -g lerna
```
The contributing workflow of this repository is:
* Edit files **but don't change the package version, lerna will do it for you**
* Create commits **but don't create tags, lerna will do it for you**
* Submit the pull request
* When the pull request is approved, rebase and merge your branch
* Publish packages with: `lerna publish --exact` (learna will create tags and commit for you)