From 8b1507e0b73298b02a8ce6d2023d8a82d305d25d Mon Sep 17 00:00:00 2001 From: Valentin Degenne Date: Wed, 28 Jun 2023 20:18:37 +0200 Subject: [PATCH] fix: wireit sass watch memory leak --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 42e0d31cfd..13ed214c78 100644 --- a/package.json +++ b/package.json @@ -98,9 +98,10 @@ ] }, "build:sass": { - "command": "sass --style=compressed --load-path=node_modules --load-path=node_modules/sass-true/sass $(ls -d */ | grep -v node_modules)", + "command": "sass --style=compressed --load-path=node_modules --load-path=node_modules/sass-true/sass $(ls -d */ | grep -v node_modules | grep -v catalog)", "files": [ - "**/*.scss" + "**/*.scss", + "!catalog" ], "output": [ "**/*.css",