Skip to content

Commit e2965e5

Browse files
authored
fix(build): add more platform specific optionalDependencies (#6195) (#6196)
This fixes e.g. failing builds on Apple Silicon. fixes: #6195
1 parent d9095b2 commit e2965e5

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,14 @@
196196
"ws": "8.17.1"
197197
},
198198
"optionalDependencies": {
199-
"@rollup/rollup-linux-x64-gnu": "4.34.9"
199+
"@rollup/rollup-linux-x64-gnu": "4.34.9",
200+
"@rollup/rollup-linux-x64-musl": "4.34.9",
201+
"@rollup/rollup-linux-arm64-gnu": "4.34.9",
202+
"@rollup/rollup-linux-arm64-musl": "4.34.9",
203+
"@rollup/rollup-darwin-arm64": "4.34.9",
204+
"@rollup/rollup-darwin-x64": "4.34.9",
205+
"@rollup/rollup-win32-x64-msvc": "4.34.9",
206+
"@rollup/rollup-win32-arm64-msvc": "4.34.9"
200207
},
201208
"engines": {
202209
"node": ">=16.0.0",

0 commit comments

Comments
 (0)