@jobgetapp/rush-needs-deploy-plugin
Version:
Utility to list all deployable projects with changes.
28 lines • 943 B
JSON
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/command-line.schema.json",
"commands": [
{
"name": "list-needs-deploy",
"commandKind": "global",
"summary": "Utility to list all deployable projects with changes.",
"shellCommand": "node <packageFolder>/dist/index.js",
"safeForSimultaneousRushProcesses": false
}
],
"parameters": [{
"parameterKind": "string",
"longName": "--version-policy",
"shortName": "-p",
"description": "Change the version used to gather deployable projects.",
"associatedCommands": ["list-needs-deploy"],
"argumentName": "VERSION_POLICY_NAME"
},
{
"parameterKind": "string",
"longName": "--path-pattern",
"shortName": "-m",
"description": "Refines results to projects to those with a path matching the provided pattern.",
"associatedCommands": ["list-needs-deploy"],
"argumentName": "PATH_PATTERN"
}]
}