Compare commits

...

2 Commits

Author SHA1 Message Date
Craigory Coppola 9e6704b698 chore(repo): enable verbose logging 2025-01-17 18:11:39 -05:00
Craigory Coppola ba63280970 fix(core): do not warn about custom tasks runners when explicitly using default 2025-01-17 10:49:25 -05:00
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ jobs:
NX_E2E_CI_CACHE_KEY: e2e-circleci-linux
NX_DAEMON: 'true'
NX_PERF_LOGGING: 'false'
NX_VERBOSE_LOGGING: 'false'
NX_VERBOSE_LOGGING: 'true'
NX_NATIVE_LOGGING: 'false'
NX_E2E_RUN_E2E: 'true'
NX_CI_EXECUTION_ENV: 'linux'
+7 -3
View File
@@ -912,8 +912,12 @@ export function getRunnerOptions(
return result;
}
function isCustomRunnerPath(modulePath: string) {
return !['nx-cloud', '@nrwl/nx-cloud', defaultTasksRunnerPath].includes(
modulePath
);
return ![
'nx-cloud',
'@nrwl/nx-cloud',
'nx/tasks-runners/default',
defaultTasksRunnerPath,
].includes(modulePath);
}