We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e47f17 commit 0645077Copy full SHA for 0645077
src/plugin.js
@@ -74,7 +74,7 @@ export async function spawnServer(opts, killOnExit = true) {
74
};
75
const options = opts.filepath
76
? { cwd: path.dirname(opts.filepath), ...default_options }
77
- : default_options;
+ : default_options;
78
79
const server = spawn(
80
opts.rubyExecutablePath || "ruby",
@@ -83,7 +83,7 @@ export async function spawnServer(opts, killOnExit = true) {
83
`--plugins=${getPlugins(opts).join(",")}`,
84
filepath
85
],
86
- options,
+ options
87
);
88
89
server.unref();
0 commit comments