Skip to content

Commit

Permalink
Merge pull request #162 from stefanpenner/upgrades
Browse files Browse the repository at this point in the history
Upgrade deps
  • Loading branch information
stefanpenner authored Jun 20, 2019
2 parents 39216e4 + 664f32c commit 065f876
Show file tree
Hide file tree
Showing 4 changed files with 205 additions and 93 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
"broccoli-debug": "^0.6.5",
"broccoli-funnel": "^2.0.0",
"broccoli-merge-trees": "^3.0.1",
"broccoli-persistent-filter": "^2.1.1",
"broccoli-plugin": "^1.3.1",
"broccoli-persistent-filter": "^2.3.0",
"broccoli-plugin": "^2.1.0",
"chalk": "^2.4.1",
"debug": "^4.1.1",
"ensure-posix-path": "^1.0.1",
"fs-extra": "^6.0.1",
"fs-extra": "^8.0.1",
"minimatch": "^3.0.4",
"resolve": "^1.8.1",
"rsvp": "^4.8.4",
"resolve": "^1.11.1",
"rsvp": "^4.8.5",
"symlink-or-copy": "^1.2.0",
"walk-sync": "^1.1.3"
},
Expand All @@ -51,9 +51,9 @@
"broccoli-test-helpers": "0.0.9",
"chai": "^4.2.0",
"co": "^4.6.0",
"mocha": "^6.0.2",
"mocha": "^6.1.4",
"path-win32": "^1.0.1",
"sinon": "^6.1.3",
"whatwg-fetch": "^2.0.4"
"sinon": "^7.3.2",
"whatwg-fetch": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion tests/find-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ describe('find', function() {
let files = results.files;

expect(files).to.eql([
root + '/node_modules/whatwg-fetch/fetch.js'
root + '/node_modules/whatwg-fetch/dist/fetch.umd.js'
]);
}));
});
Expand Down
2 changes: 1 addition & 1 deletion tests/npm-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('npm', function() {
it('whatwg-fetch', function() {
return npmMain('whatwg-fetch').then(result => {
expect(result.files).to.eql([
'fetch.js'
'fetch.umd.js'
]);
});
});
Expand Down
Loading

0 comments on commit 065f876

Please sign in to comment.