https://github.com/rickbutton/monorepo
https://github.com/rickbutton/monorepo
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/rickbutton/monorepo
- Owner: rickbutton
- Created: 2022-07-23T10:32:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-23T11:27:27.000Z (almost 4 years ago)
- Last Synced: 2025-02-12T23:29:12.623Z (over 1 year ago)
- Language: TypeScript
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# monorepo template
- pnpm (so fast)
- lerna (for workspace stuff)
- typescript (for typechecking)
- esbuild (for building)
- uvu (for testing)
- eslint + prettier (for lint)
## what do
### setup
```bash
git clone git@github.com:rickbutton/monorepo.git
cd monorepo
# use pnpm!
pnpm install
```
### dev
```
# runs tsc+esbuild in watch mode
pnpm dev
```
### test
```
pnpm test
# watch mode
pnpm test:watch
```
### versioning+publishing
TODO
### package templates
TODO