Skip to content

Commit 7cf2fb5

Browse files
committed
docs(documentation): Fix
1 parent ce12645 commit 7cf2fb5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

rfcs/0017-incremental-build.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,7 @@ The cache consists of several components:
197197
"/resources/project/namespace/Component.js": {
198198
"ui5:HasDebugVariant": true
199199
}
200-
},
201-
"taskList": [ // <-- New "taskList" attribute, defining the order of executed tasks
202-
"replaceCopyright",
203-
"minify",
204-
]
200+
}
205201
}
206202
}
207203
````
@@ -249,7 +245,11 @@ A mechanism shall be created for custom tasks to provide a signature as well. Th
249245
```jsonc
250246
{
251247
"indexTimestamp": 1764688556165,
252-
"indexTree": { /* Serialized hash tree */ }
248+
"indexTree": { /* Serialized hash tree */ },
249+
"taskList": [ // <-- New "taskList" attribute, defining the order of executed tasks
250+
"replaceCopyright",
251+
"minify",
252+
]
253253
}
254254
```
255255

@@ -290,7 +290,7 @@ These signatures can be used to quickly check whether a cache exists by looking
290290
}],
291291
"nextId": 2
292292
},
293-
"rootIndices" [{
293+
"rootIndices": [{
294294
"nodeId": 1,
295295
"resourceIndex": {
296296
"indexTimestamp": 1764688556165,
@@ -319,7 +319,7 @@ These signatures can be used to quickly check whether a cache exists by looking
319319
}],
320320
"nextId": 2
321321
},
322-
"rootIndices" [{
322+
"rootIndices": [{
323323
"nodeId": 1,
324324
"resourceIndex": {
325325
"indexTimestamp": 1764688556165,

0 commit comments

Comments
 (0)