We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5a2de commit 7865fafCopy full SHA for 7865faf
dev.py
@@ -141,7 +141,16 @@ def cmd_all_npm_install(args):
141
"""Install all node dependencies for all examples"""
142
for project_dir in EXAMPLE_DIRECTORIES + TEMPLATE_DIRECTORIES:
143
frontend_dir = next(project_dir.glob("*/frontend/"))
144
- run_verbose(["npm", "install"], cwd=str(frontend_dir))
+ run_verbose(
145
+ [
146
+ "npm",
147
+ "install",
148
+ # 2025-11-07: There is a bug in the postinstall script of a transitive dependency.
149
+ # We can safely ignore the scripts to avoid the bug.
150
+ "--ignore-scripts",
151
+ ],
152
+ cwd=str(frontend_dir),
153
+ )
154
155
156
def cmd_all_npm_build(args):
0 commit comments