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
This commit is contained in:
Hippo 2020-04-19 18:16:45 +05:30
parent 3187e4da10
commit 7dbeb29bd9
1 changed files with 3 additions and 5 deletions

View File

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