@fvc/richtext 1.6.10-rc.0 → 1.6.10

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 +33 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @fvc/richtext
2
2
 
3
+ ## 1.6.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 5aa746d: add readme.md to package.json
8
+ - ddd3a79: CSS-customisation API for @fvc/richtext, @fvc/checkbox, @fvc/box, @fvc/accordion
9
+ - 51a1a4c: Include `CHANGELOG.md` inside every published `@fvc/*` tarball.
10
+
11
+ Until this patch, `packages/<pkg>/package.json#files` only declared
12
+ `dist/lib/index.js`, `dist/lib/<pkg>`, and `package.json`, which
13
+ meant `npm pack` skipped the package's `CHANGELOG.md` even though
14
+ it is generated by Changesets at release time and lives at the
15
+ package root. Consumers had no way to read the changelog after
16
+ installing the package — they had to visit GitLab.
17
+
18
+ This patch adds `"CHANGELOG.md"` to every publishable package's
19
+ `files` array, including the scaffolder template
20
+ (`codegen/templates/component/package.json.hbs`) so new packages
21
+ inherit the setting from day one. After this ships, running
22
+ `npm view @fvc/<pkg>@<latest>` returns a tarball whose manifest
23
+ includes `CHANGELOG.md`, and `cat node_modules/@fvc/<pkg>/CHANGELOG.md`
24
+ on the consumer side returns the changelog content directly.
25
+
26
+ No component source changes. This is metadata-only, but it is a
27
+ patch bump on every package because the published-tarball contents
28
+ change — a deliberately conservative semver choice for a release
29
+ that materially affects what consumers receive on `npm install`.
30
+
31
+ - Updated dependencies [dc8ddbc]
32
+ - Updated dependencies [51a1a4c]
33
+ - @fvc/button@1.2.7
34
+ - @fvc/icons@1.1.5
35
+
3
36
  ## 1.6.10-rc.0
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fvc/richtext",
3
- "version": "1.6.10-rc.0",
3
+ "version": "1.6.10",
4
4
  "main": "./dist/lib/index.js",
5
5
  "types": "./dist/lib/richtext/src/index.d.ts",
6
6
  "files": [
@@ -46,8 +46,8 @@
46
46
  "dompurify": "^3.2.6"
47
47
  },
48
48
  "peerDependencies": {
49
- "@fvc/button": "^1.2.7-rc.0",
50
- "@fvc/icons": "^1.1.5-rc.0",
49
+ "@fvc/button": "^1.2.7",
50
+ "@fvc/icons": "^1.1.5",
51
51
  "antd": "^5.0.0",
52
52
  "react": "^18.0.0",
53
53
  "@cyber-wysiwyg/richtexteditor": "^1.0.15"