@redsift/charts 12.5.8 → 12.5.9-muiv6
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/CONTRIBUTING.md +10 -14
- package/package.json +4 -4
package/CONTRIBUTING.md
CHANGED
|
@@ -420,22 +420,18 @@ yarn build:products
|
|
|
420
420
|
|
|
421
421
|
### Stable release
|
|
422
422
|
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
6. Publish the packages to NPM: `yarn release vX.Y.Z`
|
|
423
|
+
Releases go through the one-command `yarn release` CLI — not a manual `lerna publish`. See `.github/instructions/release.instructions.md` for the full flow (all three lines, pre-release checklist, post steps).
|
|
424
|
+
|
|
425
|
+
1. Login to NPM with an authorized account: `npm login`
|
|
426
|
+
2. Dry-run the readiness gate on all three lines: `yarn release stable X.Y.Z --dry-run` (validates each line and stops before anything irreversible)
|
|
427
|
+
3. When green, publish: `yarn release stable X.Y.Z` — the CLI preflights, then publishes `X.Y.Z-muiv6`, `X.Y.Z-muiv7`, and `X.Y.Z`, pausing only for the per-line npm OTP. It then creates the GitHub release notes, opens (never merges) the `release/X.Y.Z-muiv8` → `main` PR, and cuts the next release branches.
|
|
429
428
|
|
|
430
429
|
### Alpha release
|
|
431
430
|
|
|
432
|
-
If you need to test your contribution in a product before releasing
|
|
431
|
+
If you need to test your contribution in a product before releasing — and you're not using `yarn link` — publish to the live alpha channel (muiv8-based, npm dist-tag `alpha`). There are no per-feature alpha branches to create or recreate.
|
|
433
432
|
|
|
434
|
-
1.
|
|
435
|
-
2.
|
|
436
|
-
3.
|
|
437
|
-
4. Make sure your packages are up to date: `yarn`
|
|
438
|
-
5. (Optional) Make sure the build doesn't crash: `yarn build:design-system`
|
|
439
|
-
6. Publish the packages to NPM: `yarn release --dist-tag alpha vX.Y.Z-alpha.N`
|
|
433
|
+
1. Login to NPM with an authorized account: `npm login`
|
|
434
|
+
2. Check out the current muiv8 release branch: `git checkout release/X.Y.Z-muiv8`
|
|
435
|
+
3. Publish: `yarn release alpha` — the CLI derives the next `X.Y.Z-muiv8-alpha.N` from the tags, runs the single-line preflight, and publishes (only the npm OTP is manual)
|
|
440
436
|
|
|
441
|
-
|
|
437
|
+
To iterate, push more commits to the muiv8 branch and run `yarn release alpha` again.
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"test": "yarn test:unit && yarn test:storybook"
|
|
31
31
|
},
|
|
32
32
|
"types": "index.d.ts",
|
|
33
|
-
"version": "12.5.
|
|
33
|
+
"version": "12.5.9-muiv6",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@emotion/react": "^11.10.4",
|
|
36
36
|
"@emotion/styled": "^11.10.4",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
"ts-jest": "^29.2.0"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@redsift/design-system": "^12.5.
|
|
90
|
-
"@redsift/popovers": "^12.5.
|
|
89
|
+
"@redsift/design-system": "^12.5.9-0",
|
|
90
|
+
"@redsift/popovers": "^12.5.9-0",
|
|
91
91
|
"react": ">=17",
|
|
92
92
|
"react-dom": ">=17",
|
|
93
93
|
"styled-components": "6.1.19"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "303004628960f198ea091b3128d363521d5106d4"
|
|
96
96
|
}
|