@joshski/dust 0.1.81 → 0.1.82
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/dust.js +8 -8
- package/package.json +1 -1
package/dist/dust.js
CHANGED
|
@@ -318,7 +318,7 @@ async function loadSettings(cwd, fileSystem) {
|
|
|
318
318
|
}
|
|
319
319
|
|
|
320
320
|
// lib/version.ts
|
|
321
|
-
var DUST_VERSION = "0.1.
|
|
321
|
+
var DUST_VERSION = "0.1.82";
|
|
322
322
|
|
|
323
323
|
// lib/session.ts
|
|
324
324
|
var DUST_UNATTENDED = "DUST_UNATTENDED";
|
|
@@ -3587,6 +3587,7 @@ function parseRepository(data) {
|
|
|
3587
3587
|
return {
|
|
3588
3588
|
name: repositoryData.name,
|
|
3589
3589
|
gitUrl: repositoryData.gitUrl,
|
|
3590
|
+
gitSshUrl: typeof repositoryData.gitSshUrl === "string" ? repositoryData.gitSshUrl : undefined,
|
|
3590
3591
|
url: repositoryData.url,
|
|
3591
3592
|
id: repositoryData.id
|
|
3592
3593
|
};
|
|
@@ -4454,13 +4455,12 @@ function connectWebSocket(token, state, bucketDependencies, context, fileSystem,
|
|
|
4454
4455
|
logMessage(state, context, useTUI, " (empty)");
|
|
4455
4456
|
} else {
|
|
4456
4457
|
for (const r of repos) {
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
logMessage(state, context, useTUI, ` - ${attrs.join(", ")}`);
|
|
4458
|
+
logMessage(state, context, useTUI, ` - name=${r.name}`);
|
|
4459
|
+
logMessage(state, context, useTUI, ` id=${r.id}`);
|
|
4460
|
+
logMessage(state, context, useTUI, ` gitUrl=${r.gitUrl}`);
|
|
4461
|
+
logMessage(state, context, useTUI, ` gitSshUrl=${r.gitSshUrl ?? "(none)"}`);
|
|
4462
|
+
logMessage(state, context, useTUI, ` url=${r.url}`);
|
|
4463
|
+
logMessage(state, context, useTUI, ` hasTask=${r.hasTask}`);
|
|
4464
4464
|
}
|
|
4465
4465
|
}
|
|
4466
4466
|
syncUIWithRepoList(state, repos);
|