-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathheft-plugin.json
More file actions
72 lines (72 loc) · 2.55 KB
/
heft-plugin.json
File metadata and controls
72 lines (72 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft-plugin.schema.json",
"taskPlugins": [
{
"pluginName": "vscode-extension-package-plugin",
"entryPoint": "./lib-commonjs/VSCodeExtensionPackagePlugin.js",
"parameterScope": "package"
},
{
"pluginName": "vscode-extension-verify-signature-plugin",
"entryPoint": "./lib-commonjs/VSCodeExtensionVerifySignaturePlugin.js",
"parameterScope": "verify-signature",
"parameters": [
{
"longName": "--vsix-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which VSIX file will be used for verifying signature.",
"required": true
},
{
"longName": "--manifest-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which manifest file will be used for verifying signature.",
"required": true
},
{
"longName": "--signature-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which signature file will be used for verifying signature.",
"required": true
}
]
},
{
"pluginName": "vscode-extension-publish-plugin",
"entryPoint": "./lib-commonjs/VSCodeExtensionPublishPlugin.js",
"parameterScope": "publish-vsix",
"parameters": [
{
"longName": "--vsix-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which VSIX file will be used for publishing.",
"required": true
},
{
"longName": "--manifest-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which manifest file will be used for publishing.",
"required": false
},
{
"longName": "--signature-path",
"parameterKind": "string",
"argumentName": "RELATIVE_PATH",
"description": "Use this parameter to control which signature file will be used for publishing.",
"required": false
},
{
"longName": "--publish-unsigned",
"parameterKind": "flag",
"description": "Use this parameter to control whether to publish unsigned.",
"required": false
}
]
}
]
}