From ab3fcd5db386c18fae05991602f2582836d68cdc Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Tue, 16 Nov 2021 09:10:46 -0500 Subject: [PATCH] fix: update style generation script fixes #792 --- build-style.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-style.sh b/build-style.sh index 71116e35..9456a9e4 100755 --- a/build-style.sh +++ b/build-style.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash printf "// generated with build-style.sh\nexport default \`" > src/style.ts -yarn sass vega-embed.scss >> src/style.ts +yarn -s sass vega-embed.scss >> src/style.ts echo "\`;" >> src/style.ts