From 7dbeb29bd9c0bb8cbce2ceb0258fad25c4c88426 Mon Sep 17 00:00:00 2001 From: Hippo Date: Sun, 19 Apr 2020 18:16:45 +0530 Subject: [PATCH] Move eleventy and postcss to main dependencies It was earlier in devDependencies, but that probably doesn't make sense in this context. Let's just leave it here for now :P --- package.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 0569c86..ff02f0c 100644 --- a/package.json +++ b/package.json @@ -6,16 +6,14 @@ "npm-run-all": "^4.1.5", "postcss-import": "^12.0.1", "tailwindcss": "^1.2.0", - "watch": "^1.0.2" + "watch": "^1.0.2", + "@11ty/eleventy": "^0.10.0", + "postcss-cli": "^7.1.0" }, "scripts": { "build": "npm-run-all build:css build:html", "build:css": "postcss src/style.css -o dist/style.css", "build:html": "eleventy", "watch": "watch 'npm run build' ./src" - }, - "devDependencies": { - "@11ty/eleventy": "^0.10.0", - "postcss-cli": "^7.1.0" } }