An open API service indexing awesome lists of open source software.

https://github.com/bennycode/packages


https://github.com/bennycode/packages

Last synced: 3 months ago
JSON representation

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)