Update checked-in dependencies
This commit is contained in:
parent
3934d2b758
commit
655a969b7c
221 changed files with 2272 additions and 1525 deletions
6
node_modules/@octokit/oauth-authorization-url/dist-src/index.js
generated
vendored
6
node_modules/@octokit/oauth-authorization-url/dist-src/index.js
generated
vendored
|
|
@ -28,10 +28,8 @@ function urlBuilderAuthorize(base, options) {
|
|||
};
|
||||
let url = base;
|
||||
Object.keys(map).filter((k) => options[k] !== null).filter((k) => {
|
||||
if (k !== "scopes")
|
||||
return true;
|
||||
if (options.clientType === "github-app")
|
||||
return false;
|
||||
if (k !== "scopes") return true;
|
||||
if (options.clientType === "github-app") return false;
|
||||
return !Array.isArray(options[k]) || options[k].length > 0;
|
||||
}).map((key) => [map[key], `${options[key]}`]).forEach(([key, value], index) => {
|
||||
url += index === 0 ? `?` : "&";
|
||||
|
|
|
|||
19
node_modules/@octokit/oauth-authorization-url/package.json
generated
vendored
19
node_modules/@octokit/oauth-authorization-url/package.json
generated
vendored
|
|
@ -5,7 +5,7 @@
|
|||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "7.1.1",
|
||||
"version": "8.0.0",
|
||||
"description": "Universal library to retrieve GitHubâs identity URL for the OAuth web flow",
|
||||
"repository": "github:octokit/oauth-authorization-url.js",
|
||||
"files": [
|
||||
|
|
@ -19,17 +19,16 @@
|
|||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@octokit/tsconfig": "^3.0.0",
|
||||
"@types/jest": "^29.0.0",
|
||||
"esbuild": "^0.20.0",
|
||||
"glob": "^10.2.6",
|
||||
"jest": "^29.0.0",
|
||||
"prettier": "3.2.5",
|
||||
"ts-jest": "^29.0.0",
|
||||
"typescript": "^5.0.0"
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"typescript": "^5.0.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"types": "./dist-types/index.d.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue