Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Excluded apps/ from being bundled
Browse files Browse the repository at this point in the history
refs https://ghost.slack.com/archives/C0568LN2CGJ/p1699352735496789

- we shouldn't attempt to bundle packages in the `apps/` folder because they're external to Ghost
  • Loading branch information
daniellockyer committed Nov 7, 2023
1 parent 44fdf2c commit 811679e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ function getWorkspaces(from) {
continue;
}

if (w.includes('apps/')) {
continue;
}

if (!workspacePkgInfo.pkg.private) {
continue;
}
Expand Down

0 comments on commit 811679e

Please sign in to comment.