@signal9/era-ui 19.0.0 → 20.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [20.0.0](https://github.com/sig-nine/era-ui/compare/v19.0.0...v20.0.0) (2026-08-09)
2
+
3
+ ### ⚠ BREAKING CHANGES
4
+
5
+ * **release:** No consumer change required. This changes commit tooling and
6
+ the contents of future changelog entries, not the library.
7
+
8
+ ### Bug Fixes
9
+
10
+ * **release:** every migration note I wrote was dropped from the changelog ([2e83596](https://github.com/sig-nine/era-ui/commit/2e8359651d70412e204b8636eaf6fcf07b64d296))
11
+
1
12
  ## [19.0.0](https://github.com/sig-nine/era-ui/compare/v18.0.0...v19.0.0) (2026-08-09)
2
13
 
3
14
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@signal9/era-ui",
3
- "version": "19.0.0",
3
+ "version": "20.0.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run prepack",
7
7
  "test:visual": "playwright test",
8
8
  "deploy": "npm run build && npx --yes wrangler@latest deploy",
9
9
  "preview": "wrangler dev .svelte-kit/cloudflare/_worker.js --port 4173",
10
- "prepare": "svelte-kit sync || echo ''",
10
+ "prepare": "git config core.hooksPath .githooks 2>/dev/null || true; svelte-kit sync || echo ''",
11
11
  "prepack": "svelte-kit sync && svelte-package && node scripts/build-styles.js && publint",
12
12
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
13
13
  "check:mode-verbatim": "npm run prepack && svelte-check --tsconfig tests/smoke/mode-verbatim/tsconfig.json",