You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This repository uses Markdown files to define changelog entries. If the changes in this pull request are **user-facing**, please create a changelog entry by running the following command:
4
4
5
-
yarn run nice
5
+
pnpm run nice
6
6
7
7
This will generate a `*.md` file in the `.changelog/` directory for your description. You can create as many as you need.
> This project requires **pnpm v10** or higher. You can check your version with `pnpm --version` and update if needed with `npm install -g pnpm@latest`.
23
+
21
24
After cloning this repository, install necessary dependencies:
22
25
23
26
```bash
24
-
npm install
27
+
pnpm install
25
28
```
26
29
27
-
You can also use [Yarn](https://yarnpkg.com/).
28
-
29
30
### Running the development server
30
31
31
32
To manually test the editor integration with different versions of React, you can start the development server using one of the commands below:
32
33
33
34
```bash
34
-
npm run dev:16 # Open the demo projects using React 16.
35
-
npm run dev:18 # Open the demo projects using React 18.
36
-
npm run dev:19 # Open the demo projects using React 19.
35
+
pnpm run dev:16 # Open the demo projects using React 16.
36
+
pnpm run dev:18 # Open the demo projects using React 18.
37
+
pnpm run dev:19 # Open the demo projects using React 19.
37
38
```
38
39
39
40
### Executing tests
40
41
41
42
To test the editor integration against a set of automated tests, run the following command:
42
43
43
44
```bash
44
-
npm run test
45
+
pnpm run test
45
46
```
46
47
47
48
If you want to run the tests in watch mode, use the following command:
48
49
49
50
```bash
50
-
npm run test:watch
51
+
pnpm run test:watch
51
52
```
52
53
53
54
### Building the package
54
55
55
56
To build the package that is ready to publish, use the following command:
56
57
57
58
```bash
58
-
npm run build
59
+
pnpm run build
59
60
```
60
61
61
62
## Releasing package
@@ -66,7 +67,7 @@ Before you start, you need to prepare the changelog entries.
66
67
67
68
1. Make sure the `#master` branch is up-to-date: `git fetch && git checkout master && git pull`.
68
69
1. Prepare a release branch: `git checkout -b release-[YYYYMMDD]` where `YYYYMMDD` is the current day.
69
-
1. Generate the changelog entries: `yarn run release:prepare-changelog`.
70
+
1. Generate the changelog entries: `pnpm run release:prepare-changelog`.
70
71
* You can specify the release date by passing the `--date` option, e.g., `--date=2025-06-11`.
71
72
* By passing the `--dry-run` option, you can check what the script will do without actually modifying the files.
72
73
* Read all the entries, correct poor wording and other issues, wrap code names in backticks to format them, etc.
0 commit comments