Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 4 hours 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T07:48:59.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T09:37:10.033Z (8 days ago)
- Topics: leboncoin, lerna, npm, tool
- Language: JavaScript
- Homepage:
- Size: 847 KB
- Stars: 6
- Watchers: 14
- 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)