2020-01-24 12:20:19 -05:00
|
|
|
const Octokit = require("./lib/core");
|
2019-08-06 18:26:04 -04:00
|
|
|
|
|
|
|
const CORE_PLUGINS = [
|
2020-01-24 12:20:19 -05:00
|
|
|
require("./plugins/authentication"),
|
|
|
|
require("./plugins/authentication-deprecated"), // deprecated: remove in v17
|
|
|
|
require("./plugins/log"),
|
|
|
|
require("./plugins/pagination"),
|
|
|
|
require("./plugins/register-endpoints"),
|
|
|
|
require("./plugins/rest-api-endpoints"),
|
|
|
|
require("./plugins/validate"),
|
2019-08-06 18:26:04 -04:00
|
|
|
|
2020-01-24 12:20:19 -05:00
|
|
|
require("octokit-pagination-methods") // deprecated: remove in v17
|
|
|
|
];
|
2019-08-06 18:26:04 -04:00
|
|
|
|
2020-01-24 12:20:19 -05:00
|
|
|
module.exports = Octokit.plugin(CORE_PLUGINS);
|