forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heft-plugin.json
35 lines (33 loc) · 1.06 KB
/
heft-plugin.json
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
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft-plugin.schema.json",
"lifecyclePlugins": [],
"taskPlugins": [
{
"pluginName": "copy-files-plugin",
"entryPoint": "./lib/plugins/CopyFilesPlugin",
"optionsSchema": "./lib/schemas/copy-files-options.schema.json"
},
{
"pluginName": "delete-files-plugin",
"entryPoint": "./lib/plugins/DeleteFilesPlugin",
"optionsSchema": "./lib/schemas/delete-files-options.schema.json"
},
{
"pluginName": "node-service-plugin",
"entryPoint": "./lib/plugins/NodeServicePlugin",
"parameterScope": "node-service",
"parameters": [
{
"longName": "--serve",
"parameterKind": "flag",
"description": "Start a local web server for testing purposes. This parameter is only available when running in watch mode."
}
]
},
{
"pluginName": "run-script-plugin",
"entryPoint": "./lib/plugins/RunScriptPlugin",
"optionsSchema": "./lib/schemas/run-script-options.schema.json"
}
]
}