fix(ci): refresh plugin sdk baseline and formatting

This commit is contained in:
Vincent Koc
2026-03-24 11:45:21 -07:00
parent a9da52da50
commit 783cbd1e9d
4 changed files with 15 additions and 17 deletions

View File

@@ -202,18 +202,14 @@ function installPluginRuntimeDeps(pluginDir, pluginId) {
"--package-lock=false",
],
});
const result = spawnSync(
npmRunner.command,
npmRunner.args,
{
cwd: pluginDir,
encoding: "utf8",
env: npmRunner.env,
stdio: "pipe",
shell: npmRunner.shell,
windowsVerbatimArguments: npmRunner.windowsVerbatimArguments,
},
);
const result = spawnSync(npmRunner.command, npmRunner.args, {
cwd: pluginDir,
encoding: "utf8",
env: npmRunner.env,
stdio: "pipe",
shell: npmRunner.shell,
windowsVerbatimArguments: npmRunner.windowsVerbatimArguments,
});
if (result.status === 0) {
return;
}