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" },