Skip to content

Commit 37e1827

Browse files
Fixed sonar issue
1 parent c8b303d commit 37e1827

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/cdkConstructs/src/config

packages/cdkConstructs/src/config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ export function getBooleanCFConfigValue(exports: Record<string, string>, exportN
6666
}
6767

6868
export function calculateVersionedStackName(baseStackName: string, version: string): string {
69-
return `${baseStackName}-${version.replace(/\./g, "-")}`
69+
return `${baseStackName}-${version.replaceAll(".", "-")}`
7070
}

0 commit comments

Comments
 (0)