Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention yarn in docs and update lockfile #536

Merged
merged 3 commits into from
Sep 27, 2018
Merged
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
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