From 4df18cb096eb119eabbcee6764fedba088c81a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 8 Nov 2021 17:25:51 +0100 Subject: [PATCH] Install jsdoc to build documentation --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index fba94f9..94ec1e2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -191,3 +191,7 @@ def setup(app): app.add_object_type('confval', 'confval', 'pair: %s; configuration value') + + # Install necessary NPM dependencies + import subprocess + subprocess.check_output(["npm", "install", "-g", "jsdoc"])