Skip to content

Commit 56fe507

Browse files
committed
update readme and contributing from pnpm dev to pnpm watch
1 parent a31b2e1 commit 56fe507

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Small pull requests are much easier to review and more likely to get merged.
7777
1. Ensure you have [pnpm](https://pnpm.io/installation) installed
7878
1. After cloning the repository, run `pnpm install`. You can do this in the root directory or in the `svelte` project
7979
1. Move into the `svelte` directory with `cd packages/svelte`
80-
1. To compile in watch mode, run `pnpm dev`
80+
1. To compile in watch mode, run `pnpm watch`
8181

8282
### Creating a branch
8383

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pnpm build
4747
To watch for changes and continually rebuild the package (this is useful if you're using [`pnpm link`](https://pnpm.io/cli/link) to test out changes in a project locally):
4848

4949
```bash
50-
pnpm dev
50+
pnpm watch
5151
```
5252

5353
The compiler is written in JavaScript and uses [JSDoc](https://jsdoc.app/index.html) comments for type-checking.
@@ -58,10 +58,10 @@ The compiler is written in JavaScript and uses [JSDoc](https://jsdoc.app/index.h
5858
pnpm test
5959
```
6060

61-
To filter tests, use `-g` (aka `--grep`). For example, to only run tests involving transitions:
61+
### Running Type-Check
6262

6363
```bash
64-
pnpm test -- -g transition
64+
pnpm check
6565
```
6666

6767
### svelte.dev

0 commit comments

Comments
 (0)