Skip to content

Commit

Permalink
Change all places using npm to yarn (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
TerminalStar committed Jun 29, 2018
1 parent 93413fb commit 439fa7d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -197,7 +197,7 @@ module.exports = function(defaults) {
### Setup

* `git clone https://github.com/alphasights/ember-calendar.git`
* `npm install && bower install`
* `yarn && bower install`

### Running

Expand Down
2 changes: 1 addition & 1 deletion bin/ci
Expand Up @@ -3,4 +3,4 @@
set -e

bin/lint
npm test
yarn test
5 changes: 3 additions & 2 deletions bin/setup
Expand Up @@ -2,7 +2,8 @@

set -e

npm install -g bower
npm install
yarn global add bower
yarn

bower install
bundle install
4 changes: 4 additions & 0 deletions circle.yml
Expand Up @@ -7,8 +7,12 @@ machine:
test:
override:
- ./bin/ci
- yarn

dependencies:
override:
- "cd bin && wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 && tar xjvf phantomjs-2.0.0-ubuntu-12.04.tar.bz2"
- "./bin/setup"
- yarn
cache_directories:
- ~/.cache/yarn
1 change: 1 addition & 0 deletions config/ember-try.js
@@ -1,5 +1,6 @@
/* eslint-env node */
module.exports = {
useYarn: true,
scenarios: [
{
name: 'ember-lts-2.4',
Expand Down

0 comments on commit 439fa7d

Please sign in to comment.