From 5115344927af30f06dcd91f3a0e65abeb399fdbf Mon Sep 17 00:00:00 2001 From: Tom Byers Date: Fri, 17 Sep 2021 15:55:05 +0100 Subject: [PATCH] Remove rebuild of node-sass from bootstrap We now use `sass`, a JavaScript version of Sass, compiled from dart-sass*, so shouldn't need to rebuild it to solve issues with C libraries. *https://github.com/sass/dart-sass --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ff1b1ed6..484f78867 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$V .PHONY: bootstrap bootstrap: generate-version-file ## Set up everything to run the app pip3 install -r requirements_for_test.txt - npm install && npm rebuild node-sass && npm run build + npm install && npm run build .PHONY: run-flask run-flask: ## Run flask