Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pdsuwwz/mono-repo-example

🪐 The Architecture of Monorepo System based on Pnpm, Lerna
https://github.com/pdsuwwz/mono-repo-example

architechture components eslint jest lerna monorepo pnpm pnpm-workspace yarn

Last synced: about 1 month ago
JSON representation

🪐 The Architecture of Monorepo System based on Pnpm, Lerna

Awesome Lists containing this project

README

        

# mono-repo-example
🪐 The Architecture of Monorepo System based on Pnpm, Lerna

## Install

```bash
pnpm install
```

## Run app

```bash
node .
```

## Tests with Lerna

```bash
pnpm test
```

## Lint

```bash
pnpm lint
```

## Update Version

```bash
pnpm update:version
```

## Update Dependencies

```bash
pnpm up --recursive --latest
```

## Install External Dependencies

```bash
pnpm add xxx -W
```