@redsift/products 12.5.13 → 12.5.15
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 +9 -9
- package/package.json +5 -5
package/CONTRIBUTING.md
CHANGED
|
@@ -48,7 +48,7 @@ The Design System is following a monorepo architecture, providing multiple packa
|
|
|
48
48
|
|
|
49
49
|
- `@redsift/table`
|
|
50
50
|
|
|
51
|
-
This package provides datagrid components and features based on [MUI DataGrid](https://mui.com/x/react-data-grid/)
|
|
51
|
+
This package provides datagrid components and features based on [MUI DataGrid](https://mui.com/x/react-data-grid/) Premium (`@redsift/table-pro` is the Pro-tier variant). A [Pro or Premium license](https://mui.com/x/introduction/licensing/) from MUI is required.
|
|
52
52
|
|
|
53
53
|
- `@redsift/charts`
|
|
54
54
|
|
|
@@ -416,22 +416,22 @@ yarn build:products
|
|
|
416
416
|
|
|
417
417
|
## Publishing a release
|
|
418
418
|
|
|
419
|
-
> **Canonical process:** the full, up-to-date release workflow —
|
|
419
|
+
> **Canonical process:** the full, up-to-date release workflow — peer-dependency bumps, docs/MCP regeneration, the preflight gates and the pre-release checklist — lives in **`.github/instructions/release.instructions.md`**. Follow that as the source of truth. The steps below are a summary.
|
|
420
420
|
|
|
421
421
|
### Stable release
|
|
422
422
|
|
|
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 (
|
|
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 (pre-release checklist, post steps, resume).
|
|
424
424
|
|
|
425
425
|
1. Login to NPM with an authorized account: `npm login`
|
|
426
|
-
2. Dry-run the readiness gate
|
|
427
|
-
3. When green, publish: `yarn release stable X.Y.Z` — the CLI preflights, then publishes `X.Y.Z
|
|
426
|
+
2. Dry-run the readiness gate: `yarn release stable X.Y.Z --dry-run` (validates `release/X.Y.Z` and stops before anything irreversible)
|
|
427
|
+
3. When green, publish: `yarn release stable X.Y.Z` — the CLI preflights, then publishes `X.Y.Z` under `latest`, pausing only for the npm OTP. It then creates the GitHub release notes, opens (never merges) the `release/X.Y.Z` → `main` PR, and cuts the next release branch.
|
|
428
428
|
|
|
429
429
|
### Alpha release
|
|
430
430
|
|
|
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 (
|
|
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 (from the current release branch, npm dist-tag `alpha`). There are no per-feature alpha branches to create or recreate.
|
|
432
432
|
|
|
433
433
|
1. Login to NPM with an authorized account: `npm login`
|
|
434
|
-
2. Check out the current
|
|
435
|
-
3. Publish: `yarn release alpha` — the CLI derives the next `X.Y.Z-alpha.N` from the tags, runs the
|
|
434
|
+
2. Check out the current release branch: `git checkout release/X.Y.Z`
|
|
435
|
+
3. Publish: `yarn release alpha` — the CLI derives the next `X.Y.Z-alpha.N` from the tags, runs the preflight, and publishes (only the npm OTP is manual)
|
|
436
436
|
|
|
437
|
-
To iterate, push more commits to the
|
|
437
|
+
To iterate, push more commits to the release branch and run `yarn release alpha` again.
|
package/package.json
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"test": "yarn test:unit && yarn test:storybook"
|
|
53
53
|
},
|
|
54
54
|
"types": "index.d.ts",
|
|
55
|
-
"version": "12.5.
|
|
55
|
+
"version": "12.5.15",
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@redsift/d3-rs-sankey": "0.4.0",
|
|
58
58
|
"@redsift/signal-logic": "^0.7.0",
|
|
@@ -112,12 +112,12 @@
|
|
|
112
112
|
"ts-jest": "^29.2.0"
|
|
113
113
|
},
|
|
114
114
|
"peerDependencies": {
|
|
115
|
-
"@redsift/design-system": "^12.5.
|
|
116
|
-
"@redsift/icons": "^12.5.
|
|
117
|
-
"@redsift/pickers": "^12.5.
|
|
115
|
+
"@redsift/design-system": "^12.5.15-0",
|
|
116
|
+
"@redsift/icons": "^12.5.15-0",
|
|
117
|
+
"@redsift/pickers": "^12.5.15-0",
|
|
118
118
|
"react": ">=17",
|
|
119
119
|
"react-dom": ">=17",
|
|
120
120
|
"styled-components": "6.1.19"
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "b064c6c447607f10919e71c766182014fff8cee3"
|
|
123
123
|
}
|