https://github.com/bennycode/packages
https://github.com/bennycode/packages
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bennycode/packages
- Owner: bennycode
- Created: 2024-10-08T10:05:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-31T17:49:30.000Z (3 months ago)
- Last Synced: 2025-03-31T18:43:00.647Z (3 months ago)
- Language: TypeScript
- Size: 1.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ts-lerna-template
A template for managing TypeScript packages with Lerna.
## Getting started
```bash
# Install dependencies (the Monorepo linking step is now handled during npm install)
npm install# Test packages
npm test
```## Release packages
Start with version "0.0.0" in `package.json` when creating a completely new package.
### Release all packages
Publish all packages that have changed:
```bash
npm run release
```## Read more
- [How to set up a TypeScript monorepo with Lerna](https://medium.com/@NiGhTTraX/how-to-set-up-a-typescript-monorepo-with-lerna-c6acda7d4559) ([Example repo](https://github.com/NiGhTTraX/ts-monorepo))
- [Nrwl takes over Lerna](https://blog.nrwl.io/lerna-used-to-walk-now-it-can-fly-eab7a0fe7700)