We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84791e3 commit 127edebCopy full SHA for 127edeb
dangerfile.js
@@ -9,7 +9,7 @@ if (existsSync(diffPath)) {
9
10
const uninterestingFiles = [".generated.d.ts", "globalThisBlockscopedProperties.types", "mappedTypeRecursiveInference.types"]
11
const withoutKnownNormalFails = diffedFiles.filter(diff => {
12
- return uninterestingFiles.filter(suffix => diff.to?.endsWith(suffix)).length > 0
+ return uninterestingFiles.filter(suffix => diff.to && diff.to.endsWith(suffix)).length > 0
13
})
14
15
const md = ["## Changed baselines from the TypeScript test suite"]
0 commit comments