Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Oct 25, 2019
1 parent 8b1ae9c commit 9381fb2
Show file tree
Hide file tree
Showing 6 changed files with 1,002 additions and 626 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.16.0
12.13.0
File renamed without changes.
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@
"src"
],
"dependencies": {
"joi": "^14.3.1",
"probot": "^9.2.13",
"probot-config": "^1.0.1",
"@hapi/joi": "^16.1.7",
"probot": "^9.6.0",
"probot-messages": "^1.0.1",
"probot-scheduler": "^2.0.0-beta.1",
"uuid": "^3.3.2"
"probot-scheduler": "dessant/scheduler#cbb84f6",
"uuid": "^3.3.3"
},
"devDependencies": {
"nodemon": "^1.19.1",
"npm-check-updates": "^3.1.10",
"nodemon": "^1.19.4",
"npm-check-updates": "^3.1.25",
"prettier": "^1.18.2",
"smee-client": "^1.1.0",
"standard-version": "^6.0.1"
"standard-version": "^7.0.0"
},
"engines": {
"node": ">=8.12.0"
Expand All @@ -49,5 +48,8 @@
"probot",
"probot app",
"bot"
]
],
"resolutions": {
"**/@octokit/endpoint": "^5.3.6"
}
}
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const uuidV4 = require('uuid/v4');
const createScheduler = require('probot-scheduler');
const getMergedConfig = require('probot-config');
const sendMessage = require('probot-messages');

const App = require('./lock');
Expand Down Expand Up @@ -30,7 +29,7 @@ module.exports = async robot => {
let config;
const repo = context.repo();
try {
let repoConfig = await getMergedConfig(context, file);
let repoConfig = await context.config(file);
if (!repoConfig) {
repoConfig = {perform: false};
}
Expand Down
2 changes: 1 addition & 1 deletion src/schema.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Joi = require('joi');
const Joi = require('@hapi/joi');

const fields = {
daysUntilLock: Joi.number()
Expand Down

0 comments on commit 9381fb2

Please sign in to comment.