Skip to content

Commit aa57cba

Browse files
committed
feat(inbox): Remove deploy lambda timestamp diff
1 parent 745932e commit aa57cba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/cdkLogParser.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ const STACK_REMOVAL_REGEX: [RegExp, string][] = [
1212
[new RegExp('.*\\[~] .?Metadata:?[\\s\\S]*?└─ \\[\\+].*?(\\n\\s|$)', 'gm'), ' '],
1313
[new RegExp('^|.*\\n.*├─ \\[~] \\.Metadata:(\\n.*){3}\\n\\s', 'gm'), ''],
1414
[new RegExp('^(.*)(\\w{64})(\\.zip)\n', 'gm'), ''],
15+
[
16+
new RegExp(
17+
'\\[~] Custom::AWS.*\\n.*Create.*\\n.*getParameter.*\\n.*getParameter.*\\n.*Update.*\\n.*getParameter.*\\n.*getParameter.*',
18+
'gm',
19+
),
20+
'',
21+
],
1522
];
1623

1724
function cleanCDKDiffLog(cdkLog: string) {

0 commit comments

Comments
 (0)