Skip to content

Commit eeefd6e

Browse files
authored
Merge pull request #561 from outoftime/yarn
Switch to yarn
2 parents ac63883 + 33e9802 commit eeefd6e

File tree

8 files changed

+7861
-8619
lines changed

8 files changed

+7861
-8619
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ static/compiled
22
node_modules
33
npm-debug.log
44
bower_components
5+
yarn-error.log

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- 4.2.3
3+
- 6.3.1
44
env:
55
matrix:
66
- CXX=g++-4.8 LOG_REDUX_ACTIONS=false FIREBASE_APP=popcode BROWSER_STACK_USERNAME=matthewbrown17
@@ -9,23 +9,19 @@ env:
99
- secure: SfrceTUdcPMC9Jk7T9eIFVxDGdoOC9sUUg6nQX+3GerJ+vefoVFjspx/StYPr5Jci7NWqFCGns/8Ctu7eOK7p9lFnHeleuNGxKhotsmV2dfF3DjzkusuTisVhFMNKclVCxSSuQYswBZJ8ZUCdxMYq3XIyl5kfxD7t8Tb09cdeYWPw1SUkSdjMYbVUkL+Q+tidb4FudhIH5hZQ+gAAtRYidxG1esNj0cB1ITyN5eM3UkGM59/TFqvIGfolJEBJFW7gyeqedKlgiavdXVaEOvBk4kqu+2q7waMTYbCMPLBFNBBH7bEdPt4OA5hU5qlVuCMH7y3CKHOikSDiIBzLEIcx1cy1xmHzvxuDya340vW0IK8PnvSV2jp/3uy4XWc0SXq+zWAZTfHwYFObx32byo0pBTnx8CVkxdhwNZYwfCU7KIPHJ++WVpxTyx/BrJT5BkqmTbnccsJrpr75DNfm/lrthWjz66Es2sdZVb5Knn/ezfHyKP92hcl1jNhddkX4YWH1rZt5UYA1paQrsMgolKnt9oRBsaN5/2A5X+2hHzwDRSV20XP7d7ZLwDtUCsUQf7aMo5B4P6p3ElRGpLyA04YRm/x/aegQujVMrgdIKxZ/u/TtM0gPkkoeFcbDSrQq3PVEiOGMiDxKPrKMEE4f0nYqs6mpeyoBn6lSyCXDWhXcAo=
1010
cache:
1111
apt: true
12-
directories:
13-
- node_modules
12+
yarn: true
1413
addons:
1514
apt:
1615
sources:
1716
- ubuntu-toolchain-r-test
1817
packages:
1918
- g++-4.8
20-
before_install:
21-
- npm install -g npm@'3.10.7'
22-
- npm prune
2319
before_script:
2420
- export DISPLAY=:99.0
2521
- sh -e /etc/init.d/xvfb start
2622
script:
27-
- npm-shrinkwrap-check --v3 --dev --verbose
28-
- npm test
23+
- yarn check
24+
- yarn test
2925
- gulp build --production
3026
before_deploy:
3127
- gulp syncFirebase

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,14 @@ work to do.
141141

142142
### Running locally ###
143143

144-
Pretty easy. Just check out the code, then run:
144+
Pretty easy. Just check out the code. You’ll need [Yarn](https://yarnpkg.com/),
145+
which is the cool new NPM. It’s [easy to
146+
install](https://yarnpkg.com/en/docs/install).
147+
148+
Once you’ve got it just run:
145149

146150
```bash
147-
$ npm install
151+
$ yarn
148152
```
149153

150154
That'll pull down the dependencies. Then run:
@@ -160,7 +164,7 @@ assets are recompiled incrementally and your browser automatically reloads.
160164
When you're done, lint and make sure tests pass before opening a pull request:
161165

162166
```bash
163-
$ npm test
167+
$ yarn test
164168
```
165169

166170
### Developer Reference ###

bower.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
"tests"
2323
],
2424
"dependencies": {
25-
"bootstrap": "^3.3.6",
2625
"angular": "^1.5.5",
26+
"bootstrap": "^3.3.6",
2727
"ember": "^2.5.1",
28+
"fontawesome": "^4.6.3",
2829
"foundation": "^5.5.3",
29-
"react": "^15.0.1",
30+
"handlebars": "^4.0.5",
31+
"inconsolata-webfont": "^1.0.3",
32+
"jquery": "^2.2.3",
3033
"lodash": "^4.11.2",
31-
"underscore": "^1.8.3",
34+
"mustache.js": "mustache#^2.2.1",
3235
"normalize-css": "normalize.css#^4.1.1",
33-
"jquery": "^2.2.3",
34-
"inconsolata-webfont": "^1.0.3",
36+
"react": "^15.0.1",
3537
"roboto-webfont-bower": "roboto-webfont#^0.1.1",
36-
"fontawesome": "^4.6.3",
37-
"mustache.js": "mustache#^2.2.1",
38-
"handlebars": "^4.0.5",
39-
"sweetalert": "^1.1.3"
38+
"sweetalert": "^1.1.3",
39+
"underscore": "^1.8.3"
4040
}
4141
}

0 commit comments

Comments
 (0)