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:
parent
3187e4da10
commit
7dbeb29bd9
1 changed files with 3 additions and 5 deletions
|
@ -6,16 +6,14 @@
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"postcss-import": "^12.0.1",
|
"postcss-import": "^12.0.1",
|
||||||
"tailwindcss": "^1.2.0",
|
"tailwindcss": "^1.2.0",
|
||||||
"watch": "^1.0.2"
|
"watch": "^1.0.2",
|
||||||
|
"@11ty/eleventy": "^0.10.0",
|
||||||
|
"postcss-cli": "^7.1.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "npm-run-all build:css build:html",
|
"build": "npm-run-all build:css build:html",
|
||||||
"build:css": "postcss src/style.css -o dist/style.css",
|
"build:css": "postcss src/style.css -o dist/style.css",
|
||||||
"build:html": "eleventy",
|
"build:html": "eleventy",
|
||||||
"watch": "watch 'npm run build' ./src"
|
"watch": "watch 'npm run build' ./src"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@11ty/eleventy": "^0.10.0",
|
|
||||||
"postcss-cli": "^7.1.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue