From b566ca2be75e562801881ff6c9294701aeb32d36 Mon Sep 17 00:00:00 2001 From: Michiel Kodde Date: Wed, 13 Sep 2023 11:45:49 +0200 Subject: [PATCH] Update style-lint script By calling the binary from the node_modules/.bin folder, stylelint is run without issues. Previously after upgrading to stylling 15, the correct script could not be found. --- ci/qa/style-lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/qa/style-lint b/ci/qa/style-lint index a39d1f72c..cf327b110 100755 --- a/ci/qa/style-lint +++ b/ci/qa/style-lint @@ -3,4 +3,4 @@ cd $(dirname $0)/../../ # tsconfig should be in the root -./node_modules/stylelint/bin/stylelint.js assets/scss/**/*.scss -f unix $1 +./node_modules/.bin/stylelint assets/scss/**/*.scss -f unix $1