From 4f69a859f73e2cb0a2d4017e81c023d5f4dab75b Mon Sep 17 00:00:00 2001 From: Yotam Ofek Date: Fri, 7 Nov 2025 20:52:30 +0200 Subject: [PATCH] Add `--ignore-scripts` flag to npm install invocation Newest version of rollup is broken: https://github.com/rollup/rollup/issues/6168 This allows builds to pass until rollup releases a fix and/or we implement a better solution to the fact that npm is not honoring our package lock files --- src/build_helper/src/npm.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/build_helper/src/npm.rs b/src/build_helper/src/npm.rs index 5a7df0999bd3d..253d672199901 100644 --- a/src/build_helper/src/npm.rs +++ b/src/build_helper/src/npm.rs @@ -29,6 +29,8 @@ pub fn install(src_root_path: &Path, out_dir: &Path, npm: &Path) -> Result