forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheft-plugin.json
More file actions
25 lines (23 loc) · 765 Bytes
/
heft-plugin.json
File metadata and controls
25 lines (23 loc) · 765 Bytes
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
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft-plugin.schema.json",
"taskPlugins": [
{
"pluginName": "serverless-stack-plugin",
"entryPoint": "./lib-commonjs/ServerlessStackPlugin",
"parameterScope": "serverless-stack",
"parameters": [
{
"longName": "--sst",
"description": "(EXPERIMENTAL) Invokes the SST postprocessing. Requires AWS credentials.",
"parameterKind": "flag"
},
{
"longName": "--sst-stage",
"argumentName": "STAGE_NAME",
"description": "Specifies the Serverless Stack stage; equivalent to to the \"--stage\" parameter from the \"sst\" CLI",
"parameterKind": "string"
}
]
}
]
}