Skip to content

Commit

Permalink
chore(core): remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Jun 25, 2024
1 parent 88779a5 commit e13db7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@
"nxCloudUrl": "https://staging.nx.app",
"parallel": 1,
"cacheDirectory": "/tmp/nx-cache",
"bust": 5,
"bust": 6,
"defaultBase": "master"
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export async function loadRemoteNxPlugin(
return [nxPluginWorkerCache.get(cacheKey), () => {}];
}

const { ipcPath, worker } = await startPluginWorker(plugin);
const { ipcPath, worker } = await startPluginWorker();

const socket = await new Promise<Socket>((res, rej) => {
const socket = connect(ipcPath, () => {
Expand Down Expand Up @@ -277,7 +277,7 @@ function registerPendingPromise(
}

global.nxPluginWorkerCount ??= 0;
async function startPluginWorker(plugin: PluginConfiguration) {
async function startPluginWorker() {
// this should only really be true when running unit tests within
// the Nx repo. We still need to start the worker in this case,
// but its typescript.
Expand Down

0 comments on commit e13db7d

Please sign in to comment.