@theholocron/cli 3.29.0 → 3.29.2

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 CHANGED
@@ -3050,7 +3050,7 @@ function prepareCommitMsgHookContent() {
3050
3050
  `\t"Signed-off-by: $NAME <$EMAIL>" \\`,
3051
3051
  `\t--in-place "$1"`,
3052
3052
  ``,
3053
- `npx devmoji -e --lint`,
3053
+ `npx devmoji -e`,
3054
3054
  ``
3055
3055
  ].join("\n");
3056
3056
  }
@@ -3347,7 +3347,7 @@ async function runSetup(input) {
3347
3347
  await source.updateRepoSettings(BALANCED_REPO_SETTINGS);
3348
3348
  }));
3349
3349
  print(formatStep(steps[steps.length - 1]));
3350
- const configuredWorkflowNames = (config.workflows ?? []).map((entry) => typeof entry === "string" ? entry : entry.name);
3350
+ const configuredWorkflowNames = [...new Set((config.workflows ?? []).map((entry) => typeof entry === "string" ? entry : entry.name))];
3351
3351
  const requiredChecks = effectivePreset === "strict" ? [
3352
3352
  "DCO",
3353
3353
  ...configuredWorkflowNames.flatMap((name) => {