Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions schemas/override-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@
"markdownDescription": "Optional map of free-form additional command attributes"
},
"commandLine": {
"description": "The actual command-line string",
"description": "The actual command-line string\n\nSpecial variables that can be used:\n\n - `$PROJECTS_ROOT`: A path where projects sources are mounted\n\n - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one.",
"type": "string",
"markdownDescription": "The actual command-line string"
"markdownDescription": "The actual command-line string\n\nSpecial variables that can be used:\n\n - `$PROJECTS_ROOT`: A path where projects sources are mounted\n\n - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one."
},
"component": {
"description": "Describes component to which given action relates",
Expand Down Expand Up @@ -287,9 +287,9 @@
"markdownDescription": "Optional label that provides a label for this command to be used in Editor UI menus for example"
},
"workingDir": {
"description": "Working directory where the command should be executed",
"description": "Working directory where the command should be executed\n\nSpecial variables that can be used:\n\n - `${PROJECTS_ROOT}`: A path where projects sources are mounted\n\n - `${PROJECT_SOURCE}`: A path to a project source (${PROJECTS_ROOT}/<project-name>). If there are multiple projects, this will point to the directory of the first one.",
"type": "string",
"markdownDescription": "Working directory where the command should be executed"
"markdownDescription": "Working directory where the command should be executed\n\nSpecial variables that can be used:\n\n - `${PROJECTS_ROOT}`: A path where projects sources are mounted\n\n - `${PROJECT_SOURCE}`: A path to a project source (${PROJECTS_ROOT}/<project-name>). If there are multiple projects, this will point to the directory of the first one."
}
},
"required": [
Expand Down Expand Up @@ -1058,9 +1058,9 @@
"markdownDescription": "Optional map of free-form additional command attributes"
},
"commandLine": {
"description": "The actual command-line string",
"description": "The actual command-line string\n\nSpecial variables that can be used:\n\n - `$PROJECTS_ROOT`: A path where projects sources are mounted\n\n - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one.",
"type": "string",
"markdownDescription": "The actual command-line string"
"markdownDescription": "The actual command-line string\n\nSpecial variables that can be used:\n\n - `$PROJECTS_ROOT`: A path where projects sources are mounted\n\n - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one."
},
"component": {
"description": "Describes component to which given action relates",
Expand Down Expand Up @@ -1131,9 +1131,9 @@
"markdownDescription": "Optional label that provides a label for this command to be used in Editor UI menus for example"
},
"workingDir": {
"description": "Working directory where the command should be executed",
"description": "Working directory where the command should be executed\n\nSpecial variables that can be used:\n\n - `${PROJECTS_ROOT}`: A path where projects sources are mounted\n\n - `${PROJECT_SOURCE}`: A path to a project source (${PROJECTS_ROOT}/<project-name>). If there are multiple projects, this will point to the directory of the first one.",
"type": "string",
"markdownDescription": "Working directory where the command should be executed"
"markdownDescription": "Working directory where the command should be executed\n\nSpecial variables that can be used:\n\n - `${PROJECTS_ROOT}`: A path where projects sources are mounted\n\n - `${PROJECT_SOURCE}`: A path to a project source (${PROJECTS_ROOT}/<project-name>). If there are multiple projects, this will point to the directory of the first one."
}
},
"required": [
Expand Down
Loading