My personal repo template for developing Vue 3 libraries in a monorepo powered by yarn workspaces
STATE: WIP - under development
This is a template to use for new Vue 3 library projects. It comes with a lot of useful stuff pre-configured because I'm lazy.
This template is primarily meant for myself (but you can of course you it any way you please!). I wanted a template to quickly reach for when I want to start a new Vue project, especially for libraries.
As such, it is pretty opinionated, and probably does some things in way you don't like, or is missing something you deem essential. That's fine. Fork it and make it your own :)
It also uses a bunch of new/experimental things out of the Vue ecosystem (namely Vite and Vitepress), so expect some hick-ups while using those parts of the setup.
- ✅ Full Typescript support for the whole dev workflow
- ⚡️ Lightning-fast dev workflow completely powered by Vite:
- Testing:
- 🖍 Linting with
eslint
andprettier
- [PLANNED] linting & fixing for staged files (
lint-staged
)
- [PLANNED] linting & fixing for staged files (
This template is in huge parts inspired or directly copied from Jared Palmer's tsdx-monorepo.
see Github wiki: ...(TBD)
All commands can be run directly from the project root like:
yarn start
Build everything: library packages, docs and playground app
starts the Vite
dev server for the playground app for testing playing around with your libraries manually.
During play
, no bundling has to be done as all of the library package's code is compiled JIT by Vite.
Also is the app that cypress can test against.
Run eslint on all packages
Run jest
unit tests on all packages