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

Function install_vue_install

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

Source from the content-addressed store, hash-verified

203 install_failed_apps.append(app_path)
204
205def install_vue_install(app_path_list):
206 for app_path in app_path_list:
207 command = [NPM_CMD, "install", "--force"]
208 try:
209 run_command(command, path=app_path)
210 except Exception as e:
211 print("Error:", e)
212 install_failed_apps.append(app_path)
213 command = [NPM_CMD, "run", "build"]
214 try:
215 run_command(command, path=app_path)
216 except Exception as e:
217 print("Error:", e)
218 install_failed_apps.append(app_path)
219
220def add_or_update_app(app: str, app_spec_dict):
221 url = ""

Callers 1

install_app_depsFunction · 0.85

Calls 1

run_commandFunction · 0.70

Tested by

no test coverage detected