@fvc/typography 3.0.3-rc.0 → 3.0.3

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