@epic-web/workshop-utils 6.62.2 → 6.62.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.
- package/dist/apps.server.js +1 -3
- package/package.json +1 -1
package/dist/apps.server.js
CHANGED
|
@@ -851,9 +851,7 @@ async function getExtraApps({ timings, request, } = {}) {
|
|
|
851
851
|
});
|
|
852
852
|
}
|
|
853
853
|
catch (error) {
|
|
854
|
-
if (error instanceof Error &&
|
|
855
|
-
'code' in error &&
|
|
856
|
-
error.code === 'ENOENT') {
|
|
854
|
+
if (error instanceof Error && 'code' in error && error.code === 'ENOENT') {
|
|
857
855
|
return [];
|
|
858
856
|
}
|
|
859
857
|
throw error;
|