From b472bc2e5d9b1a622e25913d301f2c6cc3cedd8d Mon Sep 17 00:00:00 2001 From: tenkuma Date: Tue, 28 Oct 2025 07:30:36 -0300 Subject: [PATCH] Duhhh wrong directories --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 574e4b7..63c9789 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,13 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "serve": "npx @11ty/eleventy --serve", - "watch:sass": "sass src/static/scss:public/static/css --watch", - "build:sass": "sass src/static/scss:public/static/css", + "watch:sass": "sass static/scss:_site/static/css --watch", + "build:sass": "sass static/scss:_site/static/css", "watch:eleventy": "eleventy --serve", "build:eleventy": "ELEVENTY_ENV=development eleventy", "start": "npm run watch:eleventy & npm run watch:sass", "build": "npm run build:eleventy & npm run build:sass", - "build:sass:prod": "sass src/static/scss:public/static/css --style compressed", + "build:sass:prod": "sass static/scss:_site/static/css --style compressed", "build:eleventy:prod": "ELEVENTY_ENV=production eleventy", "build:prod": "npm run build:eleventy:prod & npm run build:sass:prod" },