You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add preexamples:build hook to automatically run `npm run build` before
`examples:build`. This ensures examples always type-check against the
latest library code, catching breaking changes during development.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
"build": "npm run generate:schemas && node scripts/run-bun.mjs build.bun.ts",
43
43
"prepack": "npm run build",
44
-
"build:all": "npm run build && npm run examples:build",
44
+
"build:all": "npm run examples:build",
45
45
"test": "bun test src",
46
46
"test:e2e": "playwright test",
47
47
"test:e2e:update": "playwright test --update-snapshots",
48
48
"test:e2e:ui": "playwright test --ui",
49
49
"test:e2e:docker": "docker run --rm -v $(pwd):/work -w /work -it mcr.microsoft.com/playwright:v1.57.0-noble sh -c 'npm i -g bun && npm ci && npx playwright test'",
50
50
"test:e2e:docker:update": "docker run --rm -v $(pwd):/work -w /work -it mcr.microsoft.com/playwright:v1.57.0-noble sh -c 'npm i -g bun && npm ci && npx playwright test --update-snapshots'",
0 commit comments