From 9ba13359c29a6a5bee1d104b38ee73a2194f8926 Mon Sep 17 00:00:00 2001 From: Peter Colapietro Date: Fri, 25 Feb 2022 08:49:57 -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 --- tasks/test-project/tasks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/test-project/tasks.js b/tasks/test-project/tasks.js index 985e3813ba0c..6f6b98f0e8e1 100644 --- a/tasks/test-project/tasks.js +++ b/tasks/test-project/tasks.js @@ -203,7 +203,7 @@ async function webTasks(outputPath, { link, verbose }) { // @NOTE: use rwfw, because calling the copy function doesn't seem to work here task: () => execa( - 'yarn workspace web add -D postcss postcss-loader tailwindcss autoprefixer', + 'yarn workspace web add postcss postcss-loader tailwindcss autoprefixer@^9.8.8', [], getExecaOptions(outputPath) ),