@vscode/vsce 3.9.3-4 → 3.9.3-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/main.js +3 -4
- package/package.json +1 -2
package/out/main.js
CHANGED
|
@@ -173,10 +173,9 @@ module.exports = function (argv) {
|
|
|
173
173
|
.description('Publishes an extension')
|
|
174
174
|
.option('-p, --pat <token>', 'Personal Access Token (defaults to VSCE_PAT environment variable)', process.env['VSCE_PAT'])
|
|
175
175
|
.option('--azure-credential', 'Use Microsoft Entra ID for authentication')
|
|
176
|
-
.addOption(new commander_1.Option('--oidc', 'Use OpenID Connect trusted publishing for authentication')
|
|
177
|
-
'pat',
|
|
178
|
-
|
|
179
|
-
]))
|
|
176
|
+
.addOption(new commander_1.Option('--oidc', 'Use OpenID Connect trusted publishing for authentication')
|
|
177
|
+
.conflicts(['pat', 'azureCredential'])
|
|
178
|
+
.hideHelp(true))
|
|
180
179
|
.option('-t, --target <targets...>', `Target architectures. Valid targets: ${ValidTargets}`)
|
|
181
180
|
.option('--ignore-other-target-folders', `Ignore other target folders. Valid only when --target <target> is provided.`)
|
|
182
181
|
.option('--readme-path <path>', 'Path to README file (defaults to README.md)')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vsce",
|
|
3
|
-
"version": "3.9.3-
|
|
3
|
+
"version": "3.9.3-5",
|
|
4
4
|
"description": "VS Code Extensions Manager",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -60,7 +60,6 @@
|
|
|
60
60
|
"minimatch": "^10.2.2",
|
|
61
61
|
"parse-semver": "^1.1.1",
|
|
62
62
|
"read": "^1.0.7",
|
|
63
|
-
"secretlint": "^10.1.2",
|
|
64
63
|
"semver": "^7.5.2",
|
|
65
64
|
"tmp": "^0.2.3",
|
|
66
65
|
"typed-rest-client": "^1.8.4",
|