Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictoria Drake <hello@victoria.dev>2020-11-11 03:28:04 +0300
committerVictoria Drake <hello@victoria.dev>2020-11-11 03:28:04 +0300
commit49e5fb4ef42c54c48886c51f32861c192f0c5d59 (patch)
tree2f6b31714a632c1841b320e090e547285a88ce5c /README.md
parentd5e8be8d78bda0f0e8125adcd980887547f0430e (diff)
Update README to advise autoprefixer bug
- autoprefixer should temporarily be pinned to avoid bug
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7c41dfb..2b0a8e8 100644
--- a/README.md
+++ b/README.md
@@ -27,10 +27,12 @@ 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'll need `postcss`, `postcss-cli`, and `autoprefixer` which you can install 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`.
+
+To temporarily address [this issue](https://github.com/postcss/autoprefixer/issues/1358), please pin `autoprefixer@9.8.6`.
```sh
-npm i -g postcss postcss-cli autoprefixer
+npm i -g postcss postcss-cli autoprefixer@9.8.6
```
[Learn how to install and use npm here](https://www.npmjs.com/get-npm).