Skip to content

Commit 1575485

Browse files
committed
docs(documentation): Fix formatting
1 parent 872e680 commit 1575485

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rfcs/0017-incremental-build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ Stages have an explicit order, based on the order they have been created/used. S
102102

103103
The `Task Runner` shall be enhanced to:
104104

105-
a. Consult the `Project Build Cache` before executing each task to determine whether the task needs to be executed or can be skipped based on the cache information.
106-
b. After a task has been executed, update the `Project Build Cache` with information about the resources read and written during the task's execution.
105+
1. Consult the `Project Build Cache` before executing each task to determine whether the task needs to be executed or can be skipped based on the cache information.
106+
2. After a task has been executed, update the `Project Build Cache` with information about the resources read and written during the task's execution.
107107
* This can be achieved by providing the task with instances of the `workspace`-reader/writer and `dependencies`-reader that have been wrapped in `Tracker` instances. These trackers will monitor which resources are being accessed during the task's execution.
108108
* The `Project Build Cache` will then:
109109
* Update the metadata in the respective `Build Task Cache`
110110
* Validate which resources have actually changed
111111
* Based on that, check which downstream tasks need to be potentially invalidated (see [Cache Invalidation](#cache-invalidation))
112-
c. Provide the build task with a `buildCache` parameter, allowing it to access cache-related information during its execution. This can be used by tasks to optimize their processing based on which resources have changed since their last execution.
112+
3. Provide the build task with a `buildCache` parameter, allowing it to access cache-related information during its execution. This can be used by tasks to optimize their processing based on which resources have changed since their last execution.
113113

114114
Build tasks shall be provided with the following new helper functions:
115115

0 commit comments

Comments
 (0)