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 87d98bf commit a0e08f5Copy full SHA for a0e08f5
src/rollup/index.ts
@@ -100,5 +100,6 @@ function supportNativeFilter(context: any) {
100
return false
101
102
const [major, minor] = rollupVersion.split('.')
103
- return (Number(major) > 4 || (Number(major) === 4 && Number(minor) >= 38))
+ // https://github.com/rollup/rollup/pull/5909#issuecomment-2798739729
104
+ return (Number(major) > 4 || (Number(major) === 4 && Number(minor) >= 40))
105
}
0 commit comments