From 86fded2b648df72a2fa8b17c1d8843948049a760 Mon Sep 17 00:00:00 2001 From: Peter Colapietro Date: Fri, 25 Feb 2022 13:27:40 -0500 Subject: [PATCH] fix: downgrade `autoprefixer` meant to avoid: ```sh ... Error: PostCSS plugin autoprefixer requires PostCSS 8. ... ``` https://github.com/redwoodjs/redwood/pull/3515#issuecomment-1000974638 https://github.com/parcel-bundler/parcel/issues/5160 --- __fixtures__/test-project/web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__fixtures__/test-project/web/package.json b/__fixtures__/test-project/web/package.json index edd852a44fdd..59926488e628 100644 --- a/__fixtures__/test-project/web/package.json +++ b/__fixtures__/test-project/web/package.json @@ -22,7 +22,7 @@ "react-dom": "17.0.2" }, "devDependencies": { - "autoprefixer": "^10.4.2", + "autoprefixer": "^9.8.8", "postcss": "^8.4.7", "postcss-loader": "^6.2.1", "tailwindcss": "^3.0.23"