File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -273,9 +273,9 @@ async function runPublishOnProjects(
273273 ] . join ( '\n' ) } \n`
274274 ) ;
275275 }
276- const taskId = hashArray ( [ ...process . argv , Date . now ( ) . toString ( ) ] ) ;
276+ const id = hashArray ( [ ...process . argv , Date . now ( ) . toString ( ) ] ) ;
277277 await runPreTasksExecution ( {
278- taskId ,
278+ id ,
279279 workspaceRoot,
280280 nxJsonConfiguration : nxJson ,
281281 argv : process . argv ,
@@ -312,7 +312,7 @@ async function runPublishOnProjects(
312312 } ;
313313 }
314314 await runPostTasksExecution ( {
315- taskId ,
315+ id ,
316316 taskResults,
317317 workspaceRoot,
318318 nxJsonConfiguration : nxJson ,
Original file line number Diff line number Diff line change @@ -190,13 +190,13 @@ export type NxPluginV2<TOptions = unknown> = {
190190} ;
191191
192192export type PreTasksExecutionContext = {
193- readonly taskId : string ;
193+ readonly id : string ;
194194 readonly workspaceRoot : string ;
195195 readonly nxJsonConfiguration : NxJsonConfiguration ;
196196 readonly argv : string [ ] ;
197197} ;
198198export type PostTasksExecutionContext = {
199- readonly taskId : string ;
199+ readonly id : string ;
200200 readonly workspaceRoot : string ;
201201 readonly nxJsonConfiguration : NxJsonConfiguration ;
202202 readonly taskResults : TaskResults ;
Original file line number Diff line number Diff line change @@ -438,9 +438,9 @@ export async function runCommand(
438438 const status = await handleErrors (
439439 process . env . NX_VERBOSE_LOGGING === 'true' ,
440440 async ( ) => {
441- const taskId = hashArray ( [ ...process . argv , Date . now ( ) . toString ( ) ] ) ;
441+ const id = hashArray ( [ ...process . argv , Date . now ( ) . toString ( ) ] ) ;
442442 await runPreTasksExecution ( {
443- taskId ,
443+ id ,
444444 workspaceRoot,
445445 nxJsonConfiguration : nxJson ,
446446 argv : process . argv ,
@@ -475,7 +475,7 @@ export async function runCommand(
475475 : 0 ;
476476
477477 await runPostTasksExecution ( {
478- taskId ,
478+ id ,
479479 taskResults,
480480 workspaceRoot,
481481 nxJsonConfiguration : nxJson ,
You can’t perform that action at this time.
0 commit comments