@gomusdev/web-components 3.3.5 → 3.4.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.
- package/README.md +19 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.4.0 (2026-06-15)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **go-audit-docs:** add Phase 2 checkup pass; lean-length guidance
|
|
8
|
+
* **go-audit-docs:** align doc tables via Prettier
|
|
9
|
+
* **go-audit-docs:** faster audits — linter, batch review, parallel readers
|
|
10
|
+
* **go-audit-docs:** invalidate done when a doc or its source changes
|
|
11
|
+
* **go-changelog:** add maintainer skill for the integrator changelog
|
|
12
|
+
* **go-changelog:** finalize the Unreleased changelog entry on release
|
|
13
|
+
* **go-mr:** add pre-MR skill (gates, open MR, drive to green)
|
|
14
|
+
* **skill-generator:** assemble changelog + migration into the bundle
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **go-changelog:** use MDX comment in to-be-released entry
|
|
19
|
+
* **skill-generator:** drop internal leaks from the filters table
|
|
20
|
+
* **skill-generator:** repair crash + stop duplicating component docs
|
|
21
|
+
|
|
3
22
|
## 3.3.5 (2026-06-09)
|
|
4
23
|
|
|
5
24
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "Giantmonkey GmbH"
|
|
5
5
|
},
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"version": "3.
|
|
7
|
+
"version": "3.4.0",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"main": "./dist-js/gomus-webcomponents.iife.js",
|
|
10
10
|
"module": "./dist-js/gomus-webcomponents.iife.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"build:analyze": "vite build -c scripts/analyze-bundle/vite.config.ts && node scripts/analyze-bundle/analyze.mjs",
|
|
22
22
|
"preview": "vite preview",
|
|
23
23
|
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json --output human-verbose",
|
|
24
|
-
"prettier": "prettier --write \"src/**/*.{ts,js,svelte,css,scss,html,json,md}\"",
|
|
24
|
+
"prettier": "prettier --write \"src/**/*.{ts,js,svelte,css,scss,html,json,md,mdx}\"",
|
|
25
25
|
"open-test": "vite build && vite --open src/test.html",
|
|
26
26
|
"=== W E B C O M P O N E N T S ===": "",
|
|
27
27
|
"build-web-components-and-copy": "pnpm build-web-components; pnpm copy-web-components",
|