Update Getting Started dependencies

- Add postcss which became a peerDependency of postcss-cli
This commit is contained in:
Victoria Drake 2020-10-15 21:59:33 -04:00 committed by GitHub
parent 00fd8477fe
commit 76ec679216
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,10 +27,11 @@ Developer-friendly:
- Requires extended version of [Hugo](https://gohugo.io/getting-started/installing/) (latest version recommended) - Requires extended version of [Hugo](https://gohugo.io/getting-started/installing/) (latest version recommended)
To make changes to the theme CSS, extended Hugo's [PostCSS](https://gohugo.io/hugo-pipes/postcss/) requires JavaScript packages to compile the styles. You can install them using `npm`: To make changes to the theme CSS, extended Hugo's [PostCSS](https://gohugo.io/hugo-pipes/postcss/) requires JavaScript packages to compile the styles. You'll need `postcss`, `postcss-cli`, and `autoprefixer` which you can install using `npm`:
- [postcss-cli](https://github.com/postcss/postcss-cli): `npm install -g postcss-cli` ```sh
- [autoprefixer](https://github.com/postcss/autoprefixer): `npm install -g autoprefixer` npm i -g postcss postcss-cli autoprefixer
```
[Learn how to install and use npm here](https://www.npmjs.com/get-npm). [Learn how to install and use npm here](https://www.npmjs.com/get-npm).
@ -38,8 +39,7 @@ Note: If you are using [Hugo as a snap app](https://snapcraft.io/hugo), the abov
```sh ```sh
cd exampleSite/ cd exampleSite/
npm install postcss-cli npm i -g postcss postcss-cli autoprefixer
npm install autoprefixer
``` ```
If you see an error message like: If you see an error message like: