From f4409a0c681709af1e792a4c053b163123fc3637 Mon Sep 17 00:00:00 2001 From: Adam Laki Date: Fri, 8 Mar 2024 16:52:41 +0100 Subject: [PATCH] Revert CSS file remove (if this is removed the dev server not working properly) --- .gitignore | 3 --- package.json | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 65f6bf0..d7b039c 100644 --- a/.gitignore +++ b/.gitignore @@ -174,6 +174,3 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk - -# CSS -/src/css/ diff --git a/package.json b/package.json index be2a2ba..3beeb90 100644 --- a/package.json +++ b/package.json @@ -5,12 +5,12 @@ "eleventy:build": "npx eleventy", "js:lint": "npx eslint 'src/js/**'", "js:fix": "npx eslint --fix 'src/js/**'", - "build": "npm-run-all dist:delete eleventy:build sass:compile", + "build": "npm-run-all dist:delete sass:compile eleventy:build", "sass:watch": "sass --watch --update --load-path=node_modules --no-source-map --style=expanded src/scss:src/css", "sass:fix": "stylelint src/scss/**/*.scss --fix", "sass:lint": "stylelint src/scss/**/*.scss", "sass:compile": "sass --load-path=node_modules --no-source-map --style=compressed src/scss:src/css", - "start": "npm-run-all --parallel eleventy:serve sass:watch" + "start": "npm-run-all --parallel sass:watch eleventy:serve" }, "devDependencies": { "@11ty/eleventy": "^2.0.1",