Skip to content

Commit

Permalink
fix(core): temporary disable outputs watching on inux
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Sep 28, 2022
1 parent 09cfbf0 commit 65f7d61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions packages/nx/src/daemon/server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/*"],
Expand Down

1 comment on commit 65f7d61

@vercel
Copy link

@vercel vercel bot commented on 65f7d61 Sep 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-five.vercel.app
nx.dev
nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app

Please sign in to comment.