epicshop 6.50.3 → 6.50.4

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.
@@ -53,7 +53,7 @@ export async function showProgressDiff(options = {}) {
53
53
  export async function showDiffBetweenApps(options = {}) {
54
54
  const { app1, app2, silent = false } = options;
55
55
  try {
56
- const { init, getApps, isExerciseStepApp, extractNumbersAndTypeFromAppNameOrPath } = await import('@epic-web/workshop-utils/apps.server');
56
+ const { init, getApps, isExerciseStepApp, extractNumbersAndTypeFromAppNameOrPath, } = await import('@epic-web/workshop-utils/apps.server');
57
57
  const { getDiffOutputWithRelativePaths } = await import('@epic-web/workshop-utils/diff.server');
58
58
  await init();
59
59
  if (!app1) {
@@ -89,9 +89,7 @@ export async function list(options = {}) {
89
89
  p.stepNumber === step.stepNumber);
90
90
  const isStepComplete = Boolean(stepProgress?.epicCompletedAt);
91
91
  const isStepCurrent = isCurrent && currentStep === step.stepNumber;
92
- const stepIcon = isStepComplete
93
- ? chalk.green('✓')
94
- : chalk.gray('○');
92
+ const stepIcon = isStepComplete ? chalk.green('✓') : chalk.gray('○');
95
93
  const stepTitle = step.problem?.title ?? step.solution?.title ?? 'Untitled';
96
94
  const stepCurrentIndicator = isStepCurrent
97
95
  ? chalk.cyan(' ← current')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epicshop",
3
- "version": "6.50.3",
3
+ "version": "6.50.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -75,7 +75,7 @@
75
75
  "build:watch": "nx watch --projects=epicshop -- nx run \\$NX_PROJECT_NAME:build"
76
76
  },
77
77
  "dependencies": {
78
- "@epic-web/workshop-utils": "6.50.3",
78
+ "@epic-web/workshop-utils": "6.50.4",
79
79
  "@inquirer/prompts": "^7.5.1",
80
80
  "chalk": "^5.6.2",
81
81
  "close-with-grace": "^2.3.0",