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
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
## Dependencies and Building
4
4
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.
6
6
7
7
You can also package up the extension with
8
8
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
11
11
-`vsce package` which creates an extension package at `haskell-<version>.vsix`.
12
12
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.
14
14
15
15
## Developing inside VS Code
16
16
@@ -29,7 +29,7 @@ _Note_: you can also reload (`Ctrl+R` or `Cmd+R` on macOS) the VS Code window wi
29
29
30
30
#### Formatting
31
31
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.
33
33
The configurations for prettier are located in `.prettierrc`.
0 commit comments