epicshop 6.85.4 → 6.85.5
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/commands/warm.js +2 -2
- package/package.json +2 -2
package/dist/commands/warm.js
CHANGED
|
@@ -9,7 +9,7 @@ export async function warm({ silent = false, } = {}) {
|
|
|
9
9
|
}
|
|
10
10
|
try {
|
|
11
11
|
const { getApps, isProblemApp, isSolutionApp } = await import('@epic-web/workshop-utils/apps.server');
|
|
12
|
-
const { getDiffFiles,
|
|
12
|
+
const { getDiffFiles, getDiffPatch } = await import('@epic-web/workshop-utils/diff.server');
|
|
13
13
|
const { warmCache: warmEpicAPICache } = await import('@epic-web/workshop-utils/epic-api.server');
|
|
14
14
|
void warmEpicAPICache().catch(() => { }); // ignore failure
|
|
15
15
|
// Warm up the apps cache
|
|
@@ -34,7 +34,7 @@ export async function warm({ silent = false, } = {}) {
|
|
|
34
34
|
if (solutionApp) {
|
|
35
35
|
const pairName = `${problemApp.exerciseNumber.toString().padStart(2, '0')}.${problemApp.stepNumber.toString().padStart(2, '0')}.problem vs ${solutionApp.exerciseNumber.toString().padStart(2, '0')}.${solutionApp.stepNumber.toString().padStart(2, '0')}.solution`;
|
|
36
36
|
try {
|
|
37
|
-
await
|
|
37
|
+
await getDiffPatch(problemApp, solutionApp);
|
|
38
38
|
await getDiffFiles(problemApp, solutionApp);
|
|
39
39
|
diffCount++;
|
|
40
40
|
if (!silent) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epicshop",
|
|
3
|
-
"version": "6.85.
|
|
3
|
+
"version": "6.85.5",
|
|
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.85.
|
|
108
|
+
"@epic-web/workshop-utils": "6.85.5",
|
|
109
109
|
"@inquirer/prompts": "^8.2.0",
|
|
110
110
|
"@sentry/node": "^10.38.0",
|
|
111
111
|
"chalk": "^5.6.2",
|