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
eb56f86: Export validateBrandDetails and validateBrandTheme from brand-shell/vue and brand-shell/web.
Previously these were only available from the brand-shell root, which is the React bundle. Non-React consumers (Vue, Svelte, web components) that imported validation functions from the root would cause Vite to load the React adapter and fail with a react/jsx-runtime error.
Migration for Vue/Svelte/web-component apps:
- import { validateBrandDetails, validateBrandTheme } from 'brand-shell'+ import { validateBrandDetails, validateBrandTheme } from 'brand-shell/vue' // Vue+ import { validateBrandDetails, validateBrandTheme } from 'brand-shell/web' // Svelte / vanilla
d2a9b0b: Reduce release cycle time by skipping full CI verification on Changesets-generated release PRs and relying on a targeted pack+starter canary gate.