mirror of https://github.com/astral-sh/uv
Use `npm ci --ignore-scripts` in update_schemastore.py (#16915)
This commit is contained in:
parent
23b8fc9d18
commit
3347e196bb
|
|
@ -45,8 +45,8 @@ def update_schemastore(schemastore: Path, *, root: Path) -> None:
|
||||||
cwd=schemastore,
|
cwd=schemastore,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Run npm install
|
# Run npm ci
|
||||||
check_call(["npm", "install"], cwd=schemastore)
|
check_call(["npm", "ci", "--ignore-scripts"], cwd=schemastore)
|
||||||
|
|
||||||
src = schemastore.joinpath("src")
|
src = schemastore.joinpath("src")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue