From 76ec679216de68c6c4ded3866eec3795266c68e2 Mon Sep 17 00:00:00 2001 From: Victoria Drake <24644237+victoriadrake@users.noreply.github.com> Date: Thu, 15 Oct 2020 21:59:33 -0400 Subject: Update Getting Started dependencies - Add postcss which became a peerDependency of postcss-cli --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index ecc7de4..7c41dfb 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,11 @@ Developer-friendly: - 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` -- [autoprefixer](https://github.com/postcss/autoprefixer): `npm install -g autoprefixer` +```sh +npm i -g postcss postcss-cli autoprefixer +``` [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 cd exampleSite/ -npm install postcss-cli -npm install autoprefixer +npm i -g postcss postcss-cli autoprefixer ``` If you see an error message like: -- cgit v1.2.3