-
Notifications
You must be signed in to change notification settings - Fork 1
Detailed Info: Modifications
Anne LoVerso edited this page Sep 2, 2021
·
4 revisions
Modifications should look like this:
[
{
"taskToReplace": "<task filename>",
"replaceWith": "<different task filename>"
}
]
The [ ]
at the top and bottom indicate this is a list of objects. Each object is enclosed in { }
and every object has three properties - "step", "taskToReplaceFilename", and "replaceWithFilename"
-
taskToReplaceFilename
is the filename of the task that, for this situation, should be replaced in the roadmap (without the.md
) -
replaceWithFilename
is the filename of the task that, for this situation, should replace the "taskToReplaceFilename" fully in its content (without the.md
)
An example Modification file. This example has 1 object in it. You can have just 1, or as many as you want.
[
{
"taskToReplaceFilename": "check-site-requirements",
"replaceWithFilename": "check-site-requirements-cosmetology"
}
]