Skip to content

Commit

Permalink
makers setup && makers check
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 11, 2024
1 parent 070a68d commit 9af5bce
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33644,7 +33644,7 @@ var Octokit = class {
auth;
};

// node_modules/.pnpm/@octokit+plugin-paginate-graphql@5.2.2_@octokit+core@6.1.2/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
// node_modules/.pnpm/@octokit+plugin-paginate-graphql@5.2.4_@octokit+core@6.1.2/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
var generateMessage = (path, cursorValue) => `The cursor at "${path.join(
","
)}" did not change its value "${cursorValue}" after a page transition. Please make sure your that your query is set up correctly.`;
Expand Down Expand Up @@ -33690,10 +33690,10 @@ var deepFindPathToProperty = (object, searchProp, path = []) => {
for (const key of Object.keys(object)) {
const currentPath = [...path, key];
const currentValue = object[key];
if (currentValue.hasOwnProperty(searchProp)) {
return currentPath;
}
if (isObject(currentValue)) {
if (currentValue.hasOwnProperty(searchProp)) {
return currentPath;
}
const result = deepFindPathToProperty(
currentValue,
searchProp,
Expand Down Expand Up @@ -33738,8 +33738,7 @@ var createIterator = (octokit) => {
return {
[Symbol.asyncIterator]: () => ({
async next() {
if (!nextPageExists)
return { done: true, value: {} };
if (!nextPageExists) return { done: true, value: {} };
const response = await octokit.graphql(
query,
parameters
Expand Down

0 comments on commit 9af5bce

Please sign in to comment.