Skip to content

Commit

Permalink
feat(cdk-cache-invalidator): the paths prop is now optional
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsdaniels committed May 1, 2024
1 parent 4be212f commit c91b812
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/loud-frogs-dress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codedazur/cdk-cache-invalidator": minor
---

The CacheInvalidator's paths prop is now optional.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Construct } from "constructs";

interface CacheInvalidatorProps {
distribution: IDistribution;
paths: string[];
paths?: string[];
}

/**
Expand Down

0 comments on commit c91b812

Please sign in to comment.