Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 5bc9a6c

Browse files
author
Ruben Schmidmeister
authored
Merge pull request #3 from bash/yarn
Use Yarn
2 parents ec209aa + 5b90376 commit 5bc9a6c

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ node_js:
33
- node
44

55
install:
6-
- npm install
7-
- npm install -g codecov istanbul
6+
- yarn install
7+
- npm install --global codecov istanbul
88

99
script:
10-
- "./node_modules/.bin/standard index.js"
10+
- yarn standard index.js
1111
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
1212
- codecov
1313

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ install:
1010

1111
test_script:
1212
- node --version
13-
- npm --version
14-
- npm test
13+
- yarn --version
14+
- yarn test
1515

1616
build: off

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020
},
2121
"homepage": "https://github.com/bash/random.js#readme",
2222
"devDependencies": {
23-
"mocha": "^6.1.4",
24-
"standard": "^12.0.1"
23+
"mocha": "^6.2.2",
24+
"standard": "^14.3.1"
25+
},
26+
"dependencies": {
27+
"istanbul": "^0.4.5"
2528
}
2629
}

0 commit comments

Comments
 (0)