Skip to content

Commit f206a6c

Browse files
committed
Update dependencies
1 parent f77295e commit f206a6c

3 files changed

Lines changed: 788 additions & 1937 deletions

File tree

dist/index.js

Lines changed: 50 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ exports.Octokit = Octokit;
17031703

17041704
Object.defineProperty(exports, "__esModule", ({ value: true }));
17051705

1706-
var isPlainObject = __nccwpck_require__(558);
1706+
var isPlainObject = __nccwpck_require__(3287);
17071707
var universalUserAgent = __nccwpck_require__(5030);
17081708

17091709
function lowercaseKeys(object) {
@@ -2091,52 +2091,6 @@ exports.endpoint = endpoint;
20912091
//# sourceMappingURL=index.js.map
20922092

20932093

2094-
/***/ }),
2095-
2096-
/***/ 558:
2097-
/***/ ((__unused_webpack_module, exports) => {
2098-
2099-
"use strict";
2100-
2101-
2102-
Object.defineProperty(exports, "__esModule", ({ value: true }));
2103-
2104-
/*!
2105-
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
2106-
*
2107-
* Copyright (c) 2014-2017, Jon Schlinkert.
2108-
* Released under the MIT License.
2109-
*/
2110-
2111-
function isObject(o) {
2112-
return Object.prototype.toString.call(o) === '[object Object]';
2113-
}
2114-
2115-
function isPlainObject(o) {
2116-
var ctor,prot;
2117-
2118-
if (isObject(o) === false) return false;
2119-
2120-
// If has modified constructor
2121-
ctor = o.constructor;
2122-
if (ctor === undefined) return true;
2123-
2124-
// If has modified prototype
2125-
prot = ctor.prototype;
2126-
if (isObject(prot) === false) return false;
2127-
2128-
// If constructor does not have an Object-specific method
2129-
if (prot.hasOwnProperty('isPrototypeOf') === false) {
2130-
return false;
2131-
}
2132-
2133-
// Most likely a plain Object
2134-
return true;
2135-
}
2136-
2137-
exports.isPlainObject = isPlainObject;
2138-
2139-
21402094
/***/ }),
21412095

21422096
/***/ 8467:
@@ -2150,7 +2104,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
21502104
var request = __nccwpck_require__(6234);
21512105
var universalUserAgent = __nccwpck_require__(5030);
21522106

2153-
const VERSION = "4.6.1";
2107+
const VERSION = "4.6.2";
21542108

21552109
class GraphqlError extends Error {
21562110
constructor(request, response) {
@@ -3773,7 +3727,7 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau
37733727

37743728
var endpoint = __nccwpck_require__(9440);
37753729
var universalUserAgent = __nccwpck_require__(5030);
3776-
var isPlainObject = __nccwpck_require__(9062);
3730+
var isPlainObject = __nccwpck_require__(3287);
37773731
var nodeFetch = _interopDefault(__nccwpck_require__(467));
37783732
var requestError = __nccwpck_require__(537);
37793733

@@ -3917,52 +3871,6 @@ exports.request = request;
39173871
//# sourceMappingURL=index.js.map
39183872

39193873

3920-
/***/ }),
3921-
3922-
/***/ 9062:
3923-
/***/ ((__unused_webpack_module, exports) => {
3924-
3925-
"use strict";
3926-
3927-
3928-
Object.defineProperty(exports, "__esModule", ({ value: true }));
3929-
3930-
/*!
3931-
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
3932-
*
3933-
* Copyright (c) 2014-2017, Jon Schlinkert.
3934-
* Released under the MIT License.
3935-
*/
3936-
3937-
function isObject(o) {
3938-
return Object.prototype.toString.call(o) === '[object Object]';
3939-
}
3940-
3941-
function isPlainObject(o) {
3942-
var ctor,prot;
3943-
3944-
if (isObject(o) === false) return false;
3945-
3946-
// If has modified constructor
3947-
ctor = o.constructor;
3948-
if (ctor === undefined) return true;
3949-
3950-
// If has modified prototype
3951-
prot = ctor.prototype;
3952-
if (isObject(prot) === false) return false;
3953-
3954-
// If constructor does not have an Object-specific method
3955-
if (prot.hasOwnProperty('isPrototypeOf') === false) {
3956-
return false;
3957-
}
3958-
3959-
// Most likely a plain Object
3960-
return true;
3961-
}
3962-
3963-
exports.isPlainObject = isPlainObject;
3964-
3965-
39663874
/***/ }),
39673875

39683876
/***/ 5375:
@@ -13639,6 +13547,52 @@ if (typeof Object.create === 'function') {
1363913547
}
1364013548

1364113549

13550+
/***/ }),
13551+
13552+
/***/ 3287:
13553+
/***/ ((__unused_webpack_module, exports) => {
13554+
13555+
"use strict";
13556+
13557+
13558+
Object.defineProperty(exports, "__esModule", ({ value: true }));
13559+
13560+
/*!
13561+
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
13562+
*
13563+
* Copyright (c) 2014-2017, Jon Schlinkert.
13564+
* Released under the MIT License.
13565+
*/
13566+
13567+
function isObject(o) {
13568+
return Object.prototype.toString.call(o) === '[object Object]';
13569+
}
13570+
13571+
function isPlainObject(o) {
13572+
var ctor,prot;
13573+
13574+
if (isObject(o) === false) return false;
13575+
13576+
// If has modified constructor
13577+
ctor = o.constructor;
13578+
if (ctor === undefined) return true;
13579+
13580+
// If has modified prototype
13581+
prot = ctor.prototype;
13582+
if (isObject(prot) === false) return false;
13583+
13584+
// If constructor does not have an Object-specific method
13585+
if (prot.hasOwnProperty('isPrototypeOf') === false) {
13586+
return false;
13587+
}
13588+
13589+
// Most likely a plain Object
13590+
return true;
13591+
}
13592+
13593+
exports.isPlainObject = isPlainObject;
13594+
13595+
1364213596
/***/ }),
1364313597

1364413598
/***/ 6160:
@@ -18085,7 +18039,7 @@ module.exports = eval("require")("encoding");
1808518039
/***/ ((module) => {
1808618040

1808718041
"use strict";
18088-
module.exports = JSON.parse('{"name":"automerge-action","version":"0.13.0","description":"GitHub action to automatically merge pull requests","main":"lib/api.js","author":"Pascal","license":"MIT","private":true,"bin":{"automerge-action":"./bin/automerge.js"},"scripts":{"test":"jest","it":"node it/it.js","lint":"prettier -l lib/** test/** && eslint .","compile":"ncc build bin/automerge.js --license LICENSE -o dist","prepublish":"yarn lint && yarn test && yarn compile"},"dependencies":{"@octokit/rest":"^18.5.3","argparse":"^2.0.1","fs-extra":"^10.0.0","object-resolve-path":"^1.1.1","tmp":"^0.2.1"},"devDependencies":{"@vercel/ncc":"^0.28.5","dotenv":"^9.0.2","eslint":"^7.26.0","eslint-plugin-jest":"^24.3.6","jest":"^26.6.3","prettier":"^2.3.0"},"prettier":{"trailingComma":"none","arrowParens":"avoid"}}');
18042+
module.exports = JSON.parse('{"name":"automerge-action","version":"0.13.0","description":"GitHub action to automatically merge pull requests","main":"lib/api.js","author":"Pascal","license":"MIT","private":true,"bin":{"automerge-action":"./bin/automerge.js"},"scripts":{"test":"jest","it":"node it/it.js","lint":"prettier -l lib/** test/** && eslint .","compile":"ncc build bin/automerge.js --license LICENSE -o dist","prepublish":"yarn lint && yarn test && yarn compile"},"dependencies":{"@octokit/rest":"^18.5.3","argparse":"^2.0.1","fs-extra":"^10.0.0","object-resolve-path":"^1.1.1","tmp":"^0.2.1"},"devDependencies":{"@vercel/ncc":"^0.28.6","dotenv":"^10.0.0","eslint":"^7.27.0","eslint-plugin-jest":"^24.3.6","jest":"^27.0.1","prettier":"^2.3.0"},"prettier":{"trailingComma":"none","arrowParens":"avoid"}}');
1808918043

1809018044
/***/ }),
1809118045

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"tmp": "^0.2.1"
2525
},
2626
"devDependencies": {
27-
"@vercel/ncc": "^0.28.5",
28-
"dotenv": "^9.0.2",
29-
"eslint": "^7.26.0",
27+
"@vercel/ncc": "^0.28.6",
28+
"dotenv": "^10.0.0",
29+
"eslint": "^7.27.0",
3030
"eslint-plugin-jest": "^24.3.6",
31-
"jest": "^26.6.3",
31+
"jest": "^27.0.1",
3232
"prettier": "^2.3.0"
3333
},
3434
"prettier": {

0 commit comments

Comments
 (0)