This document contains development-related documentation including build setup, testing, CI/CD, and deployment.
This is an npm workspaces monorepo managed by Lerna. It contains:
| Package | npm | Description |
|---|---|---|
packages/stencil-library |
@kit-data-manager/pid-component |
Core Stencil web component library |
packages/react-library |
@kit-data-manager/react-pid-component |
React wrapper (auto-generated proxies) |
packages/vue-library |
@kit-data-manager/vue-pid-component |
Vue 3 wrapper (auto-generated proxies) |
packages/angular-library |
@kit-data-manager/angular-pid-component |
Angular standalone wrapper (auto-generated proxies) |
packages/nextjs-app |
(private) | Next.js demo app with React (SSR) Storybook |
The framework wrappers are thin proxy layers generated by Stencil's output targets during the
stencil-library build. They forward props and events to the underlying web components.
- Node.js 22+
- npm (this project uses npm exclusively; do not use yarn or pnpm)
git clone https://github.com/kit-data-manager/pid-component.git
cd pid-component
npm ciBuild all packages in dependency order:
npm run buildThis runs npx lerna run build, which:
- Builds
stencil-libraryfirst (stencil build --docs), generating the web components, thedist/andhydrate/outputs, plus the auto-generated framework proxy code in the sibling wrapper packages. - Builds
react-library,vue-library, andangular-library(each runstscto compile their generated proxy code).
To rebuild the Stencil library in watch mode during development:
cd packages/stencil-library
npm run buildWatchStorybook is configured at the repository root (.storybook/) and serves stories from
packages/stencil-library/src/. It requires the Stencil library to be built first.
Main Storybook (Web Components):
npm run build # build all packages first
npm run storybook # starts on http://localhost:6006Composed Storybook (all frameworks):
The project uses Storybook Composition to display framework-specific stories from the React, Vue, Angular, and Next.js wrapper packages alongside the main Web Components stories. To run the full composed Storybook locally:
npm run storybook:allThis uses concurrently + wait-on to:
- Start the React (Vite) sub-Storybook on port 6007
- Start the Vue sub-Storybook on port 6008
- Start the Angular sub-Storybook on port 6009
- Start the React (Next.js) sub-Storybook on port 6010
- Wait for all four, then start the main composed Storybook on port 6006
You can kill all storybooks with lsof -tiTCP:6006-6010 -sTCP:LISTEN | xargs kill.
You can also run just the main Storybook (npm run storybook) without the framework
sub-Storybooks; the composed refs will simply show as unavailable.
Build a static Storybook:
npm run build-storybookThis builds the main Storybook and all framework sub-Storybooks into storybook-static/,
with the sub-Storybooks placed in subdirectories (react-vite/, vue/, angular/,
react-nextjs/).
This project uses Vitest for all testing:
- Stencil unit/spec tests run via
@stencil/vitestin a Stencil mock-DOM environment. - Stencil E2E tests run in a real Chromium browser via
@vitest/browser-playwright. - Storybook tests run via
@storybook/addon-vitestwith integrated accessibility checks.
npm test # runs ALL tests with coverageThis runs three test suites in sequence:
- Stencil spec tests -- unit and component tests in a mock-DOM environment
- Stencil E2E tests -- component tests in a real Chromium browser via Playwright
- Storybook tests (
vitest run --project=storybook) -- renders every story in headless Chromium and runsplay()functions and accessibility audits
From packages/stencil-library you can also run subsets:
npm run test:spec # spec tests only (node DOM)
npm run test:e2e # E2E tests only (real browser)
npm run test:watch # watch mode (no coverage)A V8 coverage report is generated automatically on every test run (except in watch mode).
Coverage output is available as text in the terminal and as HTML in packages/stencil-library/coverage/.
Storybook tests require Playwright with Chromium. Install with:
npx playwright install --with-deps chromium
Spec tests (*.spec.ts / *.spec.tsx) test pure logic and component rendering in a node DOM:
import { render, h } from '@stencil/vitest';
import { describe, it, expect } from 'vitest';
describe('my-component', () => {
it('renders with value', async () => {
const { root } = await render(<my-component value="test" />);
expect(root).toBeTruthy();
expect(root.value).toBe('test');
});
});E2E tests (*.e2e.tsx) run in a real browser:
import { render, h } from '@stencil/vitest';
import { describe, it, expect } from 'vitest';
describe('my-component e2e', () => {
it('renders and hydrates', async () => {
const { root } = await render(<my-component value="test" />);
expect(root).toHaveClass('hydrated');
});
});Runs on every push and pull request. Tests against Node.js 22 (LTS) and 24 (current):
npm ci-- install dependenciesnpx playwright install --with-deps chromium-- install browser for E2E and Storybook testsnpx lerna run build-- build all packagesnpx lerna run lint-- ESLintnpx lerna run format:check-- Prettiernpm run build-storybook-- build static Storybooknpm test-- runs all tests (Stencil spec + E2E + Storybook) with coverage
On pull requests, a coverage summary is posted as a comment. On pushes to main, a coverage
badge is updated automatically.
Runs on pushes to main. Builds all packages and the composed Storybook, then deploys the static
output to GitHub Pages.
Runs on every push and pull request. Uploads the main Web Components Storybook to
Chromatic for visual regression testing. Changes on main are
auto-accepted.
The production Storybook is deployed to GitHub Pages at
https://kit-data-manager.github.io/pid-component/. It is rebuilt and redeployed automatically
on every push to main via the deploy-storybook.yml workflow.
The deployed Storybook includes the main Web Components stories plus the composed React (Vite), React (Next.js), Vue, and Angular sub-Storybooks (accessible via the sidebar).
The npm packages are published independently (Lerna independent versioning). To publish:
npx lerna publishChromatic provides visual regression testing and a hosted Storybook
preview for each PR. It runs automatically via chromatic.yml on every push and pull request.