We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac8e15 commit daddf10Copy full SHA for daddf10
server/src/plugin/runtime/node-fork-worker.ts
@@ -1,11 +1,9 @@
1
-import { RuntimeWorkerOptions as RuntimeWorkerOptions } from "./runtime-worker";
2
import child_process from 'child_process';
3
-import path from 'path';
+import net from "net";
4
import { RpcMessage, RpcPeer } from "../../rpc";
5
-import { ChildProcessWorker } from "./child-process-worker";
6
-import { getPluginNodePath } from "../plugin-npm-dependencies";
7
import { SidebandSocketSerializer } from "../socket-serializer";
8
-import net from "net";
+import { ChildProcessWorker } from "./child-process-worker";
+import { RuntimeWorkerOptions } from "./runtime-worker";
9
10
export class NodeForkWorker extends ChildProcessWorker {
11
0 commit comments