fix(core): temporary disable outputs watching on inux

This commit is contained in:
Victor Savkin 2022-09-28 09:07:31 -04:00
parent 09cfbf090b
commit 65f7d61285
No known key found for this signature in database
GPG Key ID: 39178FEB7698B817
2 changed files with 3 additions and 5 deletions

View File

@ -294,10 +294,8 @@ export async function startServer(): Promise<Server> {
);
}
// temporary disable outputs tracking when using WSL
const outputsTrackingIsEnabled =
process.env['WSL_DISTRO_NAME'] === undefined;
// temporary disable outputs tracking on linux
const outputsTrackingIsEnabled = process.platform != 'linux';
if (outputsTrackingIsEnabled) {
if (!getOutputsWatcherSubscription()) {
storeOutputsWatcherSubscription(

View File

@ -26,9 +26,9 @@
"@nrwl/devkit": ["packages/devkit"],
"@nrwl/devkit/*": ["packages/devkit/*"],
"@nrwl/e2e/utils": ["e2e/utils"],
"@nrwl/esbuild": ["packages/esbuild"],
"@nrwl/eslint-plugin-nx": ["packages/eslint-plugin-nx/src"],
"@nrwl/expo": ["packages/expo"],
"@nrwl/esbuild": ["packages/esbuild"],
"@nrwl/express": ["packages/express"],
"@nrwl/jest": ["packages/jest"],
"@nrwl/jest/*": ["packages/jest/*"],