This repository contains the source code for the react-youtube-liteframe package and test-app to test the package in a local development setup.
👉 See packages/react-youtube-liteframe/README.md for usage and documentation.
This project uses pnpm workspaces for local testing instead of global linking.
/packages
/react-youtube-liteframe ← library
/test-app ← your test app
pnpm-workspace.yaml
pnpm-workspace.yaml:
packages:
- "packages/*"pnpm installThis installs dependencies across both the library and the test app and links them automatically.
- Library: inside
react-youtube-liteframepnpm dev
- Test app: inside
test-apppnpm run dev
When you make changes inside your library, rebuild it (pnpm run dev), and your test app will pick them up automatically.
No pnpm link or global linking needed!
