epicshop 6.84.5 → 6.84.6
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.
|
@@ -202,21 +202,6 @@ async function buildExpectedFiles({ workshopRoot, exerciseDirName, }) {
|
|
|
202
202
|
relativePath: path.relative(workshopRoot, problemReadme),
|
|
203
203
|
});
|
|
204
204
|
}
|
|
205
|
-
const problemFinished = await resolveMdxFile(problemDir, 'FINISHED');
|
|
206
|
-
if (!problemFinished) {
|
|
207
|
-
issues.push({
|
|
208
|
-
level: 'error',
|
|
209
|
-
code: 'missing-step-problem-finished',
|
|
210
|
-
message: `Missing step problem FINISHED.mdx for step ${stepNumber}`,
|
|
211
|
-
file: path.join(problemDir, 'FINISHED.mdx'),
|
|
212
|
-
});
|
|
213
|
-
}
|
|
214
|
-
else {
|
|
215
|
-
contentFiles.push({
|
|
216
|
-
fullPath: problemFinished,
|
|
217
|
-
relativePath: path.relative(workshopRoot, problemFinished),
|
|
218
|
-
});
|
|
219
|
-
}
|
|
220
205
|
}
|
|
221
206
|
for (const solutionDir of dirs.solutions) {
|
|
222
207
|
const solutionReadme = await resolveMdxFile(solutionDir, 'README');
|
|
@@ -239,21 +224,6 @@ async function buildExpectedFiles({ workshopRoot, exerciseDirName, }) {
|
|
|
239
224
|
relativePath: path.relative(workshopRoot, solutionReadme),
|
|
240
225
|
});
|
|
241
226
|
}
|
|
242
|
-
const solutionFinished = await resolveMdxFile(solutionDir, 'FINISHED');
|
|
243
|
-
if (!solutionFinished) {
|
|
244
|
-
issues.push({
|
|
245
|
-
level: 'error',
|
|
246
|
-
code: 'missing-step-solution-finished',
|
|
247
|
-
message: `Missing step solution FINISHED.mdx for step ${stepNumber}`,
|
|
248
|
-
file: path.join(solutionDir, 'FINISHED.mdx'),
|
|
249
|
-
});
|
|
250
|
-
}
|
|
251
|
-
else {
|
|
252
|
-
contentFiles.push({
|
|
253
|
-
fullPath: solutionFinished,
|
|
254
|
-
relativePath: path.relative(workshopRoot, solutionFinished),
|
|
255
|
-
});
|
|
256
|
-
}
|
|
257
227
|
}
|
|
258
228
|
}
|
|
259
229
|
return { files, contentFiles, issues };
|
|
@@ -725,7 +695,7 @@ export async function launchReadiness(options = {}) {
|
|
|
725
695
|
});
|
|
726
696
|
}
|
|
727
697
|
}
|
|
728
|
-
// Also scan the remaining required MDX files for EpicVideo embeds
|
|
698
|
+
// Also scan the remaining required MDX files for EpicVideo embeds,
|
|
729
699
|
// but do not require that they include a video.
|
|
730
700
|
{
|
|
731
701
|
const videoFilePaths = new Set(filesToCheck.map((f) => f.fullPath));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epicshop",
|
|
3
|
-
"version": "6.84.
|
|
3
|
+
"version": "6.84.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"build:watch": "nx watch --projects=epicshop -- nx run \\$NX_PROJECT_NAME:build"
|
|
106
106
|
},
|
|
107
107
|
"dependencies": {
|
|
108
|
-
"@epic-web/workshop-utils": "6.84.
|
|
108
|
+
"@epic-web/workshop-utils": "6.84.6",
|
|
109
109
|
"@inquirer/prompts": "^8.2.0",
|
|
110
110
|
"@sentry/node": "^10.38.0",
|
|
111
111
|
"chalk": "^5.6.2",
|