From 3347e196bb998835ea4a4cfe3bb64552deebf464 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 1 Dec 2025 18:36:55 -0500 Subject: [PATCH] Use `npm ci --ignore-scripts` in update_schemastore.py (#16915) --- scripts/update_schemastore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update_schemastore.py b/scripts/update_schemastore.py index fc2af2da8..b986a83b9 100644 --- a/scripts/update_schemastore.py +++ b/scripts/update_schemastore.py @@ -45,8 +45,8 @@ def update_schemastore(schemastore: Path, *, root: Path) -> None: cwd=schemastore, ) - # Run npm install - check_call(["npm", "install"], cwd=schemastore) + # Run npm ci + check_call(["npm", "ci", "--ignore-scripts"], cwd=schemastore) src = schemastore.joinpath("src")