diff --git a/scripts/preBuildHTML.py b/scripts/preBuildHTML.py index 764a785..4c71a4d 100644 --- a/scripts/preBuildHTML.py +++ b/scripts/preBuildHTML.py @@ -9,9 +9,9 @@ def preBuildHTMLFun(): if webpackInst == False: print("Running npm ci...") - call(["npm", "ci"], shell=True) + call("npm ci", shell=True) print("Running npx browserslist@latest --update-db...") - call(["npx", "browserslist@latest", "--update-db"], shell=True) + call("npx browserslist@latest --update-db", shell=True) print("Running npm run build...") - call(["npm", "run", "build"], shell=True) + call("npm run build", shell=True)