From 3508a5498eec45e3e6424811073ddca4a2da19bc Mon Sep 17 00:00:00 2001 From: Virginia Dooley Date: Wed, 10 Apr 2024 16:01:21 +0100 Subject: [PATCH] Explicitly require and install --- package.json | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c167dea..ad6dc98 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "cssMin": "csso src-site/styles/system.css --output src-site/styles/system.min.css", "watch:eleventy": "npm run exportSass && eleventy --serve", "build:eleventy": "cross-env DESTINATION=github eleventy --output=docs", - "reinstallNodeModules": "rm -rf node_modules && npm install", + "reinstallNodeModules": "rm -rf node_modules && npm install && npm install npm-run-all --save-dev", "exportSass": "sass-export system/partials/_variables.scss -o src-site/_data/sass.json --dependencies system/", "watch:sass": "node-sass --watch system/docs.scss src-site/styles/system.css", "build:sass": "node-sass system/docs.scss src-site/styles/system.css", diff --git a/pyproject.toml b/pyproject.toml index 6b2b598..da51d3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,7 @@ readme = "README.md" authors = [{name = "Sym Roe"}, {name = "Heydon Pickering"}] dependencies = [ + "npm-run-all", "pytest", "lighthouse @ git+https://github.com/f02h/lighthouse-python.git#egg=lighthouse", ]