Skip to content
Closed
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Small pull requests are much easier to review and more likely to get merged.
1. Ensure you have [pnpm](https://pnpm.io/installation) installed
1. After cloning the repository, run `pnpm install`. You can do this in the root directory or in the `svelte` project
1. Move into the `svelte` directory with `cd packages/svelte`
1. To compile in watch mode, run `pnpm dev`
1. To compile in watch mode, run `pnpm watch`

### Creating a branch

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pnpm build
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):

```bash
pnpm dev
pnpm watch
```

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

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

```bash
pnpm test -- -g transition
pnpm check
```

### svelte.dev
Expand Down