Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"release:publish": "pnpm publish --recursive --tag latest-v7",
"release:publish:dry-run": "pnpm publish --recursive --tag latest-v7 --registry=\"http://localhost:4873/\"",
"release:tag": "node scripts/releaseTag.mjs",
"release:prepare": "node scripts/createReleasePR.mjs",
"validate": "concurrently \"pnpm prettier && pnpm eslint\" \"pnpm proptypes\" \"pnpm docs:typescript:formatted\" \"pnpm docs:api\"",
"clean:node_modules": "rimraf --glob \"**/node_modules\""
},
Expand Down Expand Up @@ -152,12 +153,14 @@
"eslint-plugin-react-compiler": "0.0.0-experimental-9ed098e-20240725",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.3.0",
"execa": "^9.4.0",
"fast-glob": "^3.3.2",
"format-util": "^1.0.5",
"fs-extra": "^11.2.0",
"glob-gitignore": "^1.0.15",
"globby": "^14.0.2",
"html-webpack-plugin": "^5.6.0",
"inquirer": "^9.2.15",
"jsdom": "25.0.1",
"jss": "^10.10.0",
"jss-plugin-template": "^10.10.0",
Expand Down
49 changes: 49 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@

### Prepare the release of the packages

> [!INFO]
> You can now use the new automated release preparation script by running `pnpm release:prepare`. This script automates steps 1-5 below by:
>
> - Asking for the major version to update (v7.x, v6.x, etc.)
> - Determining the new version based on the selected major version:
> - For non-latest major versions: patch/minor/custom
> - For latest major version: patch/minor/major/custom and prerelease options:
> - Start alpha prerelease (if no prerelease exists)
> - Increase alpha version or start beta (if alpha exists)
> - Increase beta version or go to major (if beta exists)
> - Creating a new branch from upstream/master (for latest major) or upstream/vX.x (for older versions)
> - Updating the root package.json and all product package versions
> - Generating and formatting the changelog
> - Creating a PR with all changes and a complete checklist
>
> This script is fully interactive and will guide you through the release process.

Check warning on line 32 in scripts/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Google.Will] Avoid using 'will'. Raw Output: {"message": "[Google.Will] Avoid using 'will'.", "location": {"path": "scripts/README.md", "range": {"start": {"line": 32, "column": 40}}}, "severity": "WARNING"}

The following steps must be proposed as a pull request.

1. Compare the last tag with the branch upon which you want to release.
Expand Down
Loading
Loading