@fvc/picker 1.1.4-rc.0 → 1.1.4
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/CHANGELOG.md +29 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @fvc/picker
|
|
2
2
|
|
|
3
|
+
## 1.1.4
|
|
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
|
+
- Updated dependencies [51a1a4c]
|
|
30
|
+
- @fvc/icons@1.1.5
|
|
31
|
+
|
|
3
32
|
## 1.1.4-rc.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fvc/picker",
|
|
3
|
-
"version": "1.1.4
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"main": "./dist/lib/index.js",
|
|
5
5
|
"types": "./dist/lib/picker/src/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test": "bun test --preload ../../tests/happydom.ts --preload ../../tests/testing-library.tsx"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@fvc/icons": "^1.1.5
|
|
31
|
+
"@fvc/icons": "^1.1.5"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.0.0",
|