From 99cb9974bebc4391b77ad112f49c1702eea31eea Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Thu, 17 Sep 2020 12:04:47 -0400 Subject: [PATCH] Added venv-manager commands to npm scripts --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index b785b26..db88807 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,9 @@ "start:docs": "npx styleguidist server --open --config styleguidist/styleguide.config.js", "build:frontend": "react-scripts build", "build:docs": "npx styleguidist build --config styleguidist/styleguide.config.js", + "venv:create": "python3 utils/venv-manager.py create", + "venv:delete": "python3 utils/venv-manager.py delete", + "venv:reset": "python3 utils/venv-manager.py reset", "test": "react-scripts test", "eject": "react-scripts eject" },