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: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This steps will help you to set up your development environment.
8
8
9
9
1. Clone the git repository: `git clone git@github.com:preactjs/prefresh.git`
10
10
2. Go into the cloned folder: `cd prefresh/`
11
-
3. Install all dependencies: `yarn`
11
+
3. Install all dependencies: `pnpm`
12
12
13
13
All linting will be done in pre-commit hooks and we're using eslint + prettier for that.
14
14
@@ -17,7 +17,7 @@ All linting will be done in pre-commit hooks and we're using eslint + prettier f
17
17
This project uses [changesets](https://github.com/atlassian/changesets). This means that for
18
18
every PR there must be documentation for what has been changed and which package is affected.
19
19
20
-
You can document a change by running `yarn changeset` in the root, which will ask you which packages
20
+
You can document a change by running `pnpm changeset` in the root, which will ask you which packages
21
21
have changed and whether the change is major/minor/patch. It will then ask you to write a change entry as markdown.
22
22
23
23
[Read more about adding a `changeset` here.](https://github.com/atlassian/changesets/blob/master/docs/adding-a-changeset.md#i-am-in-a-multi-package-repository-a-mono-repo)
@@ -27,4 +27,4 @@ have changed and whether the change is major/minor/patch. It will then ask you t
27
27
Running a fixture locally can be somewhat of a pain as the paths in the `package.json`
28
28
are meant for it being hoisted one level higher, the process we use to test locally is
29
29
to adjust the local paths like `file:../../packages/core` to `file:../../../packages/core`
30
-
and then run `yarn`, this will enable you to run this fixture locally.
30
+
and then run `pnpm`, this will enable you to run this fixture locally.
0 commit comments