@@ -109,7 +109,7 @@ A custom task implementation needs to return a function with the following signa
109109
110110# ### ESM
111111
112- ` ` ` js linenums="1
112+ ` ` ` js
113113/**
114114 * Custom task API
115115 *
@@ -149,7 +149,7 @@ export default async function({dependencies, log, options, taskUtil, workspace})
149149
150150# ### CommonJS
151151
152- ` ` ` js linenums="1
152+ ` ` ` js
153153/**
154154 * Custom task API
155155 *
@@ -208,7 +208,7 @@ If this callback is not provided, UI5 CLI will make an assumption as to whether
208208
209209# ### ESM
210210
211- ` ` ` js linenums="1
211+ ` ` ` js
212212/**
213213 * Callback function to define the list of required dependencies
214214 *
@@ -249,7 +249,7 @@ export async function determineRequiredDependencies({availableDependencies, getD
249249
250250# ### CommonJS
251251
252- ` ` ` js linenums="1
252+ ` ` ` js
253253/**
254254 * Callback function to define the list of required dependencies
255255 *
@@ -300,7 +300,7 @@ result by writing them into the provided `workspace`.
300300
301301# ### ESM
302302
303- ` ` ` js linenums="1
303+ ` ` ` js
304304import path from "node:path";
305305import renderMarkdown from "./renderMarkdown.js";
306306
@@ -331,7 +331,7 @@ export default async function({dependencies, log, options, taskUtil, workspace})
331331
332332#### CommonJS
333333
334- ``` js linenums="1
334+ ``` js
335335const path = require (" node:path" );
336336const renderMarkdown = require (" ./renderMarkdown.js" );
337337
@@ -375,7 +375,7 @@ APIs to retrieve additional information about the project currently being built
375375
376376#### ESM
377377
378- ``` js linenums="1
378+ ``` js
379379import path from " node:path" ;
380380
381381/*
@@ -425,7 +425,7 @@ export default async function({dependencies, log, options, taskUtil, workspace})
425425
426426#### CommonJS
427427
428- ```js linenums= " 1 "
428+ ```js
429429const path = require(" node: path" );
430430
431431/*
0 commit comments