Development setup
Clone and install
git clone https://github.com/vadiraja/strata-grid.gitcd strata-gridnpm installThe repository is an npm workspace. The library lives at the root; the docs
site lives in docs-site/.
Library scripts
| Command | What it does |
|---|---|
npm run dev | Start the Vite playground. |
npm test | Run the Vitest suite once. |
npm run test:watch | Run tests in watch mode. |
npm run typecheck | Type-check with tsc --noEmit. |
npm run build | Build the library bundle with tsup. |
npm run docs:api | Regenerate API docs under docs-site/. |
Docs site
npm run dev -w @strata-grid/docs-sitenpm run build -w @strata-grid/docs-siteThe docs site regenerates the API reference before dev and build.