FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix: update minimum rollup version requirement for native filter support · unjs/unplugin@a0e08f5 · GitHub

/ unplugin Public

Commit a0e08f5

Browse files
committed
fix: update minimum rollup version requirement for native filter support
1 parent 87d98bf commit a0e08f5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

‎src/rollup/index.ts‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,6 @@ function supportNativeFilter(context: any) {
100100
return false
101101

102102
const [major, minor] = rollupVersion.split('.')
103-
return (Number(major) > 4 || (Number(major) === 4 && Number(minor) >= 38))
103+
// https://github.com/rollup/rollup/pull/5909#issuecomment-2798739729
104+
return (Number(major) > 4 || (Number(major) === 4 && Number(minor) >= 40))
104105
}

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL