Skip to content

Commit 81d60d6

Browse files
committed
Update contributing guidelines
1 parent a0bfb92 commit 81d60d6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Contributing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## Dependencies and Building
44

5-
Run `npm install` in the project root to install the development dependencies.
5+
Run `yarn install` in the project root to install the development dependencies.
66

77
You can also package up the extension with
88

9-
- `npm install -g vsce` to get the Extension Manager,
10-
- `npm install` to build the extension
9+
- `yarn global add vsce` to get the Extension Manager,
10+
- `yarn install` to build the extension
1111
- `vsce package` which creates an extension package at `haskell-<version>.vsix`.
1212

13-
_Note:_ that if you get errors running `vsce package`, it might help running `tsc -p ./` directly, since that gives the actual error output of the TypeScript compilation.
13+
_Note:_ that if you get errors running `vsce package`, it might help running `yarn run pretest` directly, since that gives the actual error output of the TypeScript compilation.
1414

1515
## Developing inside VS Code
1616

@@ -29,7 +29,7 @@ _Note_: you can also reload (`Ctrl+R` or `Cmd+R` on macOS) the VS Code window wi
2929

3030
#### Formatting
3131

32-
[prettier](https://prettier.io) is automatically run o neach commit via husky. If you are developing within VS Code, the settings are set to auto format on save.
32+
[prettier](https://prettier.io) is automatically run on each commit via husky. If you are developing within VS Code, the settings are set to auto format on save.
3333
The configurations for prettier are located in `.prettierrc`.
3434

3535
## Navigating the Files

0 commit comments

Comments
 (0)