Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/scully/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scullyio/scully",
"version": "0.0.101",
"version": "0.0.102",
"description": "Scully CLI",
"repository": {
"type": "GIT",
Expand Down
6 changes: 3 additions & 3 deletions libs/scully/src/lib/utils/handlers/defaultAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ async function plugin(localBaseFilter = baseFilter): Promise<HandledRoute[]> {
/** launch the browser, its shared among renderers */
await launchedBrowser();
/** start handling each route, works in chunked parallel mode */
await renderParallel(handledRoutes);
await renderParallel(processedRoutes);
/** wait for routeDiscoveryDone plugins to be ready. they can still be running. */
await discoveryDone;
/** fire off the allDone plugins */
await handleAllDone(handledRoutes);
return handledRoutes;
await handleAllDone(processedRoutes);
return processedRoutes;
} catch (e) {
// TODO: add better error handling
log(e);
Expand Down