chore(linter): allow cache override for manual jest runs (#12879)
This commit is contained in:
parent
4a5783ac6e
commit
7e47fdcfa1
@ -376,11 +376,13 @@ export function mapProjectGraphFiles<T>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ESLINT_REGEX = /node_modules.*[\/\\]eslint$/;
|
const ESLINT_REGEX = /node_modules.*[\/\\]eslint$/;
|
||||||
|
const JEST_REGEX = /node_modules\/.bin\/jest$/; // when we run unit tests in jest
|
||||||
const NRWL_CLI_REGEX = /nx[\/\\]bin[\/\\]run-executor\.js$/;
|
const NRWL_CLI_REGEX = /nx[\/\\]bin[\/\\]run-executor\.js$/;
|
||||||
export function isTerminalRun(): boolean {
|
export function isTerminalRun(): boolean {
|
||||||
return (
|
return (
|
||||||
process.argv.length > 1 &&
|
process.argv.length > 1 &&
|
||||||
(!!process.argv[1].match(NRWL_CLI_REGEX) ||
|
(!!process.argv[1].match(NRWL_CLI_REGEX) ||
|
||||||
|
!!process.argv[1].match(JEST_REGEX) ||
|
||||||
!!process.argv[1].match(ESLINT_REGEX))
|
!!process.argv[1].match(ESLINT_REGEX))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user