repowisestage 0.0.54 → 0.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/repowise.js +4 -2
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -11580,6 +11580,10 @@ async function create() {
|
|
|
11580
11580
|
let seenAwaitingInput = false;
|
|
11581
11581
|
let depInstallPromise = null;
|
|
11582
11582
|
let lspInstallPromise = null;
|
|
11583
|
+
if (repoRoot) {
|
|
11584
|
+
const lspResult = await maybeInstallLspServers({ repoRoot, spinner });
|
|
11585
|
+
lspInstallPromise = lspResult.installPromise;
|
|
11586
|
+
}
|
|
11583
11587
|
while (true) {
|
|
11584
11588
|
if (++pollAttempts > MAX_POLL_ATTEMPTS) {
|
|
11585
11589
|
spinner.fail(chalk8.red("Pipeline timed out. Check dashboard for status."));
|
|
@@ -11628,8 +11632,6 @@ async function create() {
|
|
|
11628
11632
|
resumeText: "Resuming pipeline..."
|
|
11629
11633
|
});
|
|
11630
11634
|
depInstallPromise = result.installPromise;
|
|
11631
|
-
const lspResult = await maybeInstallLspServers({ repoRoot, spinner });
|
|
11632
|
-
lspInstallPromise = lspResult.installPromise;
|
|
11633
11635
|
}
|
|
11634
11636
|
if (syncResult.status === "completed") {
|
|
11635
11637
|
progressRenderer.finalize();
|