Skip to content

Commit 7119e8d

Browse files
committed
fix(synth): exclude auth files properly without auth0 feature
1 parent 8cd552e commit 7119e8d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

skeleton/cdk/pnpm-workspace.yaml

Whitespace-only changes.

src/tasks/synth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export const synthTask = createSynthTask(
2727
}
2828

2929
if (!context.features?.includes("auth0")) {
30-
list.push("components/AuthGuard");
31-
list.push("hooks/useAuthenticatedFetch.ts");
30+
list.push("src/components/AuthGuard");
31+
list.push("src/hooks/useAuthenticatedFetch.ts");
3232
}
3333

3434
return list;

0 commit comments

Comments
 (0)