@theholocron/cli 3.16.1 → 3.17.0
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/cli.mjs +8 -0
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -3277,6 +3277,14 @@ async function runSetup(input) {
|
|
|
3277
3277
|
steps.push(await runStep("source", "sync topics", dryRun, () => source.syncTopics(topics)));
|
|
3278
3278
|
print(formatStep(steps[steps.length - 1]));
|
|
3279
3279
|
}
|
|
3280
|
+
if (config.description && source.syncDescription) {
|
|
3281
|
+
steps.push(await runStep("source", "sync description", dryRun, () => source.syncDescription(config.description)));
|
|
3282
|
+
print(formatStep(steps[steps.length - 1]));
|
|
3283
|
+
}
|
|
3284
|
+
if (config.homepage && source.syncHomepage) {
|
|
3285
|
+
steps.push(await runStep("source", "sync homepage", dryRun, () => source.syncHomepage(config.homepage)));
|
|
3286
|
+
print(formatStep(steps[steps.length - 1]));
|
|
3287
|
+
}
|
|
3280
3288
|
const teams = repo?.teams ?? [];
|
|
3281
3289
|
if (teams.length > 0) if (source.syncTeams) {
|
|
3282
3290
|
steps.push(await runStep("source", "sync teams", dryRun, () => source.syncTeams(teams)));
|