epicshop 6.78.1 → 6.78.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/commands/cleanup.js +3 -3
- package/package.json +2 -2
package/dist/commands/cleanup.js
CHANGED
|
@@ -91,8 +91,7 @@ async function resolveCleanupPaths(paths = {}) {
|
|
|
91
91
|
resolveFallbackPath(),
|
|
92
92
|
];
|
|
93
93
|
const offlineVideosDir = paths.offlineVideosDir ?? path.join(resolvePrimaryDir(), 'offline-videos');
|
|
94
|
-
const configPath = paths.configPath ??
|
|
95
|
-
path.join(resolvePrimaryDir(), 'workshops-config.json');
|
|
94
|
+
const configPath = paths.configPath ?? path.join(resolvePrimaryDir(), 'workshops-config.json');
|
|
96
95
|
return {
|
|
97
96
|
reposDir,
|
|
98
97
|
cacheDir,
|
|
@@ -657,7 +656,8 @@ export async function cleanup({ silent = false, force = false, targets, workshop
|
|
|
657
656
|
return offlineVideoIndex;
|
|
658
657
|
};
|
|
659
658
|
const ensureSelectedWorkshopSummaries = async (spinnerLabel) => {
|
|
660
|
-
if (selectedWorkshopSummaries.length > 0 ||
|
|
659
|
+
if (selectedWorkshopSummaries.length > 0 ||
|
|
660
|
+
selectedWorkshops.length === 0) {
|
|
661
661
|
return;
|
|
662
662
|
}
|
|
663
663
|
if (workshopSummaries.length > 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epicshop",
|
|
3
|
-
"version": "6.78.
|
|
3
|
+
"version": "6.78.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"build:watch": "nx watch --projects=epicshop -- nx run \\$NX_PROJECT_NAME:build"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@epic-web/workshop-utils": "6.78.
|
|
102
|
+
"@epic-web/workshop-utils": "6.78.2",
|
|
103
103
|
"@inquirer/prompts": "^8.2.0",
|
|
104
104
|
"@sentry/node": "^10.36.0",
|
|
105
105
|
"chalk": "^5.6.2",
|