I've encountered an issue when trying to use the hook, it didn't start the postcss process. I've figured it's due to missing PATH from the environment in a spawned process.
:envreplaces the environment completely, together with PATH.
This patch uses :extra-env instead which augments current environment
without replacing it.
First, thanks for a great work!
I've encountered an issue when trying to use the hook, it didn't start the postcss process. I've figured it's due to missing PATH from the environment in a spawned process.
:env
replaces the environment completely, together withPATH
.This patch uses
:extra-env
instead which augments current environment without replacing it.