https://github.com/kshirish/lump
lump of experiments within monorepo
https://github.com/kshirish/lump
Last synced: about 1 year ago
JSON representation
lump of experiments within monorepo
- Host: GitHub
- URL: https://github.com/kshirish/lump
- Owner: kshirish
- License: mit
- Created: 2023-05-19T06:36:31.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T04:15:20.000Z (about 3 years ago)
- Last Synced: 2025-06-02T11:54:16.922Z (about 1 year ago)
- Language: JavaScript
- Size: 496 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lump
A lump of experiments within monorepo
_/app_
1. docs (storybook)
2. app1 (react)
_/packages_
1. eslint config
2. tailwind config
3. ui (shared library)
4. utils (shared)
### Getting Started
```
pnpm i
```
```
pnpm run dev
```
### Useful Commands
- `pnpm run build` - Build all packages, including the Storybook site
- `pnpm run dev` - Run all packages locally and preview with Storybook
- `pnpm --filter docs run dev` - Runs only for `docs`
- `pnpm run lint` - Lint all packages
- `pnpm run changeset` - Generate a changeset
- `pnpm run clean` - Clean up all `node_modules` and `dist` folders (runs each package's clean script)
### Apps & Packages
Workspaces enables us to "hoist" dependencies that are shared between packages to the root `package.json`. Turborepo runs each `build` in parallel and caches & hashes the output to speed up future builds.