Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update contribution guide for stable release #34001

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ Following chapters describe required steps for each phase. All of them are gener

> Following graph sums those steps as well https://github.com/microsoft/fluentui/blob/master/tools/workspace-plugin/src/generators/prepare-initial-release/README.md#v9-release-process-flow

> [!TIP]
> you can use `yarn generate` or Nx Console to navigate through the process.

## 1. Kick-off phase

> automation status: implemented ✅ / https://github.com/microsoft/fluentui/pull/28474
Expand All @@ -153,15 +156,17 @@ This will do the usual scaffolding and adds `-preview` suffix to the package nam
> automation status: implemented ✅ / https://github.com/microsoft/fluentui/pull/28505

```sh
yarn nx g @fluentui/workspace-plugin:prepare-initial-release --project @fluentui/react-one-preview --phase=preview
yarn nx g @fluentui/workspace-plugin:prepare-initial-release --project react-one-preview --phase=preview
```

## 3. Stable phase

> automation status: implemented ✅ / https://github.com/microsoft/fluentui/pull/28505

You can use `yarn generate` or Nx Console to navigate through the process.

```sh
yarn nx g @fluentui/workspace-plugin:prepare-initial-release --project @fluentui/react-one-preview --phase=stable
yarn nx g @fluentui/workspace-plugin:prepare-initial-release --project react-one-preview --phase=stable
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need to update also previous commands in kickof an preview phase chapter.

I'm fine having the mantion about yarn generate and nx console only once before the kickoff phase , something like

> [!TIP]
> you can use `yarn generate` or Nx Console to navigate through the process.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

```

- TODO: deprecate all released `*-preview` package version on npm on CI during release
Loading