From c919b2aaac2f856e160bbff721c3ebb27a7bb185 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 28 Feb 2021 09:05:17 +0000 Subject: [PATCH] Start using the npm-installed gulp --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index a8bcf8a72..b7047ed81 100644 --- a/noxfile.py +++ b/noxfile.py @@ -62,7 +62,7 @@ def docs_live(session): @nox.session(reuse_venv=True) def docs(session): # Generate relevant files prior to installation - session.run("gulp", "build", external=True) + session.run("./node_modules/.bin/gulp", "build", external=True) _install_this_project_with_flit(session, extras=["doc"], editable=False)