Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex authored and autorebase[bot] committed Jun 10, 2019
1 parent c252bc6 commit 668468c
Show file tree
Hide file tree
Showing 3 changed files with 1,273 additions and 1,225 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"dependencies": {
"p-series": "^2.0.0",
"probot-serverless-now": "^2.0.0",
"p-series": "^2.1.0",
"probot-serverless-now": "^2.1.0",
"debug": "^4.1.1",
"github-backport": "^1.2.0",
"shared-github-internals": "^1.0.0"
"github-backport": "^1.3.0",
"shared-github-internals": "^1.1.2"
},
"description": "GitHub App to backport pull requests",
"devDependencies": {
"@octokit/rest": "^16.22.0",
"@types/debug": "^4.1.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.12.2",
"jest": "^24.5.0",
"jest-circus": "^24.5.0",
"jest-junit": "^6.3.0",
"probot": "^9.0.2",
"prettier": "^1.16.4",
"ts-jest": "^24.0.1",
"tslint": "^5.14.0",
"@octokit/rest": "^16.25.0",
"@types/debug": "4.1.4",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.7",
"jest": "^24.8.0",
"jest-circus": "^24.8.0",
"jest-junit": "^6.4.0",
"probot": "^9.2.13",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.1"
"typescript": "^3.5.1"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
6 changes: 3 additions & 3 deletions src/backport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ describe("nominal behavior", () => {
head: { ref },
},
} = await octokit.pulls.get({
number: pullRequestNumber,
owner,
pull_number: pullRequestNumber,
repo,
});
await deleteRef({
Expand All @@ -125,8 +125,8 @@ describe("nominal behavior", () => {
base: { ref: actualBase },
},
} = await octokit.pulls.get({
number: pullRequestNumber,
owner,
pull_number: pullRequestNumber,
repo,
});
return actualBase;
Expand Down Expand Up @@ -202,8 +202,8 @@ describe("nominal behavior", () => {
base: { ref: actualBase },
},
} = await octokit.pulls.get({
number: backportedPullRequestNumber,
owner,
pull_number: backportedPullRequestNumber,
repo,
});
expect(actualBase).toBe(base);
Expand Down
Loading

0 comments on commit 668468c

Please sign in to comment.