-
Notifications
You must be signed in to change notification settings - Fork 216
Switch node-keytar into optional dependency #786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
5 tasks
felipecrs
added a commit
to vscode-shellcheck/vscode-shellcheck
that referenced
this issue
Nov 17, 2022
With workaround until microsoft/vscode-vsce#786 is not fixed. Closes #824
felipecrs
added a commit
to vscode-shellcheck/vscode-shellcheck
that referenced
this issue
Nov 17, 2022
With workaround until microsoft/vscode-vsce#786 is not fixed. Closes #824
@joaomoreno I took a look at the source code, and it seems that "dependencies": {
"azure-devops-node-api": "^11.0.1",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.9",
"commander": "^6.1.0",
"glob": "^7.0.6",
"hosted-git-info": "^4.0.2",
- "keytar": "^7.7.0"
"leven": "^3.1.0",
"markdown-it": "^12.3.2",
"mime": "^1.3.4",
"minimatch": "^3.0.3",
"parse-semver": "^1.1.1",
"read": "^1.0.7",
"semver": "^5.1.0",
"tmp": "^0.2.1",
"typed-rest-client": "^1.8.4",
"url-join": "^4.0.1",
"xml2js": "^0.4.23",
"yauzl": "^2.3.1",
"yazl": "^2.2.2"
},
+ "optionalDependencies": {
+ "keytar": "^7.7.0"
+ }, |
joaomoreno
added a commit
that referenced
this issue
Dec 7, 2022
joaomoreno
added a commit
that referenced
this issue
Dec 7, 2022
Thanks a lot! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
As far as I know, node-keytar is only used for authentication when NOT using the
VSCE_PAT
, therefore it is an optional dependency, which is a potential fix for:References
https://docs.npmjs.com/cli/v9/configuring-npm/package-json#optionaldependencies
The text was updated successfully, but these errors were encountered: