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