adding dist

This commit is contained in:
Federico Builes
2022-09-26 08:45:09 +02:00
parent fa10a7f0d6
commit 4a6d691283
2 changed files with 4 additions and 3 deletions

5
dist/index.js generated vendored
View File

@@ -1609,8 +1609,9 @@ exports.context = new Context.Context();
* @param token the repo PAT or GITHUB_TOKEN
* @param options other options to set
*/
function getOctokit(token, options) {
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options));
function getOctokit(token, options, ...additionalPlugins) {
const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
}
exports.getOctokit = getOctokit;
//# sourceMappingURL=github.js.map

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long