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

Land Yarn #169

Merged
merged 1 commit into from
Feb 1, 2017
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ node_js:
matrix:
allow_failures:
- node_js: 4
before_script:
- npm install -g gulp webpack
# `npm install` is run automatically
install:
- npm install -g gulp webpack yarn
- yarn --pure-lockfile
script:
- gulp compile:web
- npm test
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Write `VERSION` file when building

### Changed
- Switch to yarn package manager (#169)

## [0.10.0] - 2017-01-16
### Added
- Add `Launcher.addPlayerName(playerName: string)`
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ Hearthstone replays in your browser, written in Typescript with React.
- Node.js ~v7 (v4.5 should also work, but is not officially supported)
- Build system: `npm install -g gulp webpack`
- Development: `npm install -g electron-prebuilt gulp webpack`
- [yarn](https://yarnpkg.com/): `npm install -g yarn`


## Building

```
npm install
yarn --pure-lockfile
gulp compile
```

Expand Down
Loading