From 2f321b94ad033709021e65e3bed2ad1b14df8260 Mon Sep 17 00:00:00 2001 From: sthag Date: Sat, 11 Apr 2026 10:33:52 +0200 Subject: [PATCH] fix: Path for style output --- bus/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bus/package.json b/bus/package.json index fc22b60..e3b62c1 100644 --- a/bus/package.json +++ b/bus/package.json @@ -9,9 +9,9 @@ "clean:deploy": "rm -rf ../deploy/*", "clean:report": "rm -rf ../report/*", "clean:test": "rm -rf ../test/*", - "style:compile": "sass ../source/style:build/css --load-path=vendor", - "style:deploy": "sass ../source/style:deploy/css --load-path=vendor", - "style:watch": "sass --watch ../source/style:build/css --load-path=vendor", + "style:compile": "sass ../source/style:../build/css --load-path=vendor", + "style:deploy": "sass ../source/style:../deploy/css --load-path=vendor", + "style:watch": "sass --watch ../source/style:../build/css --load-path=vendor", "build:new": "npm run clean:build && npx @11ty/eleventy && npm run style:compile", "build": "npx @11ty/eleventy && npm run style:compile", "deploy": "npm run clean:deploy && npx @11ty/eleventy --output=deploy --pathprefix=hippie && npm run style:deploy",