MCPcopy
hub / github.com/emacs-eaf/emacs-application-framework / install_npm_install

Function install_npm_install

install-eaf.py:187–194  ·  view source on GitHub ↗
(app_path_list)

Source from the content-addressed store, hash-verified

185 print("[EAF] WARN: removing {}".format(node_modules_path))
186
187def install_npm_install(app_path_list):
188 for app_path in app_path_list:
189 command = [NPM_CMD, "install", "--force"]
190 try:
191 run_command(command, path=app_path)
192 except Exception as e:
193 print("Error:", e)
194 install_failed_apps.append(app_path)
195
196def install_npm_rebuild(app_path_list):
197 for app_path in app_path_list:

Callers 1

install_app_depsFunction · 0.85

Calls 1

run_commandFunction · 0.70

Tested by

no test coverage detected