Skip to content

Commit

Permalink
Mention yarn in docs and update lockfile (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
LitoMore authored and sindresorhus committed Sep 27, 2018
1 parent 285a26d commit 394dee8
Show file tree
Hide file tree
Showing 4 changed files with 1,236 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Before you continue; please make sure you've searched our existing issues to avo
macOS Version: The output of `sw_vers`, remember that we currently only support macOS 10.12 or later
Kap Version: Find this in the about section of Kap, or by right clicking on the Kap icon and pressing "Get Info"
Step to reproduce : If applicable provide steps to reproduce the issue you're having
Step to reproduce: If applicable provide steps to reproduce the issue you're having
Current behaviour: A description of how Kap is currently behaving
Expected behaviour : How you expected Kap to behave
Expected behaviour: How you expected Kap to behave
Workaround: A workaround the issue if you've found on (this will help others experiencing the same issue!)
-->

Expand Down
6 changes: 3 additions & 3 deletions contributing.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Contributing

1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
2. Install the dependencies: `npm install`
3. Build the code, start the app, and watch for changes: `npm start`
2. Install the dependencies: `yarn`
3. Build the code, start the app, and watch for changes: `yarn start`

To make sure that your code works in the finished app, you can generate the binary:

```
$ npm run pack
$ yarn pack
```

After that, you'll see the binary in the `dist` folder 😀
2 changes: 1 addition & 1 deletion maintaining.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Developing Kap

Run `npm run dev` in one terminal tab to start watch mode, and in another tab, run `npm start` to launch Kap.
Run `yarn dev` in one terminal tab to start watch mode, and in another tab, run `yarn start` to launch Kap.

We strongly recommend installing an [XO editor plugin](https://github.com/sindresorhus/xo#editor-plugins) for JavaScript linting and a [Stylelint editor plugin](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/complementary-tools.md#editor-plugins) for CSS linting. Both of these support auto-fix on save.

Expand Down
Loading

0 comments on commit 394dee8

Please sign in to comment.