Skip to content

Commit 120b350

Browse files
committed
Update deps and fix travis tests
1 parent 82e462e commit 120b350

File tree

5 files changed

+1758
-1035
lines changed

5 files changed

+1758
-1035
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
language: node_js
22
node_js:
3-
- 7
3+
- 8
4+
- 9
45
cache:
56
directories:
67
- $HOME/.npm
78
- node_modules
9+
install:
10+
- npm install

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = (...fns) => fns.reduce((f, g) => (...args) =>
22
g ? f(g(...args)) : f(...args),
3-
fn => async (...args) => fn(...args)
4-
);
3+
fn => async (...args) => fn(...args));
4+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/dimapaloskin/micro-compose#readme",
2828
"devDependencies": {
2929
"ava": "^0.25.0",
30-
"xo": "^0.18.1"
30+
"xo": "^0.20.2"
3131
},
3232
"xo": {
3333
"space": 2

test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import compose from './../';
2+
import compose from './..';
33

44
const first = fn => (arg1, arg2) => {
55
return fn(arg1, arg2, 'third');

0 commit comments

Comments
 (0)